/* ════════════════════════════════════════
   SECTION 4 — ПРОГРАММА ДНЯ
════════════════════════════════════════ */

.program {
  position: relative;
  background: var(--forest);
  display: flex;
  justify-content: center;
  padding: 80px 24px 100px;
}

/* ── Контейнер ── */
.program__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  gap: 48px;
}

/* ── Заголовок ── */
.program__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.program__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin: 0;
}

.program__divider {
  width: clamp(100px, 35%, 200px);
  opacity: 0.4;
  filter: invert(1);
}

/* ── Таймлайн ── */
.program__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
}

/* Вертикальная линия */
.program__timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(176, 138, 74, 0.5) 10%, rgba(176, 138, 74, 0.5) 90%, transparent);
}

/* ── Один элемент ── */
.program__item {
  display: grid;
  grid-template-columns: 72px 48px 1fr;
  align-items: center;
  gap: 0;
}

/* ── Иконка ── */
.program__icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 16px;
  color: var(--parchment);
  opacity: 0.75;
}

.program__icon svg {
  width: 32px;
  height: 32px;
}

/* ── Узел линии ── */
.program__node {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program__node::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--glow-gold);
}

/* ── Текст ── */
.program__content {
  padding-left: 16px;
}

.program__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.06em;
  margin: 0 0 2px;
  line-height: 1;
}

.program__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.program__desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 2.5vw, 15px);
  font-style: italic;
  color: rgba(231, 217, 190, 0.6);
  margin: 2px 0 0;
  line-height: 1.4;
}
