/* ═══════════════════════════════════════════
   Program Journey — Page Styles
   ═══════════════════════════════════════════ */

.journey-page {
  min-height: 100vh;
}

.journey-header {
  position: sticky;
  top: 0;
  z-index: 10;
  text-align: center;
  padding: 32px 24px 20px;
  background: #f3edf9;
  border-bottom: 1px solid #e0d3ef;
}

.journey-header .overline {
  font-size: 13px;
  letter-spacing: 2px;
  color: #7c4dba;
  margin-bottom: 6px;
}

.journey-header .section-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.journey-header .section-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Timeline area ── */
.timeline-scroll {
  padding: 32px 24px 48px;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #7c4dba;
  border-radius: 2px;
}

/* ── Timeline Item ── */
.t-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 36px;
}

.t-item:last-child { padding-bottom: 0; }

/* Node dot */
.t-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #7c4dba;
  z-index: 2;
}

.t-item.highlight::before {
  background: #7c4dba;
  border-color: #5a2d8e;
}

.t-item.finale::before {
  background: #f0c040;
  border-color: #5a2d8e;
  width: 22px; height: 22px;
  left: 22px; top: 7px;
}

/* Card */
.t-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  border: 1px solid #e0d3ef;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.t-item.highlight .t-card {
  background: #5a2d8e;
  border-color: #5a2d8e;
  color: #fff;
}

.t-item.finale .t-card {
  background: #5a2d8e;
  border: 2px solid #f0c040;
  color: #fff;
}

.t-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7c4dba;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-date .badge {
  background: #e8dcf5;
  color: #5a2d8e;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.highlight .t-date, .finale .t-date { color: #d4bef0; }
.highlight .t-date .badge, .finale .t-date .badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.t-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.t-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.highlight .t-desc, .finale .t-desc { color: rgba(255,255,255,0.75); }

.t-location {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #7c4dba;
  background: #f3edf9;
  padding: 3px 10px;
  border-radius: 10px;
}

.highlight .t-location { background: rgba(255,255,255,0.12); color: #d4bef0; }

/* ── Desktop: keep single-side for simplicity ── */
@media (min-width: 769px) {
  .timeline::before {
    left: 32px;
  }
}

@media (max-width: 768px) {
  .t-card { padding: 14px 16px; }
  .t-title { font-size: 15px; }
  .journey-header .section-title { font-size: 26px; }
}
