/* =============================================================
   overview.css — "Trip" panel (#panel-overview)
   -------------------------------------------------------------
   Contains: the boarding-pass style hero (.ticket*, .perf
   dashed-tear-line), the date-driven live card under it
   (.overview-live/.live-card — days-to-departure countdown before
   the trip, "Today" now/next card during it, hidden after),
   and the "trip in brief" list (.brief*). The old day strip and
   Jump-to quicklinks were removed at the owner's request — the
   route lives on Schedule, booking links in Info.
   Data comes from js/data/days.js. Rendered by
   js/render-overview.js (functions build .live/.brief HTML;
   the ticket block itself is static markup in index.html).
   ============================================================= */
/* ============ TICKET / HERO ============ */
.ticket{
  background:var(--paper);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  margin-top:0;
  overflow:hidden;
  position:relative;
}
.ticket-top{ padding:20px 20px 16px; }
.eyebrow{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal); font-weight:600; margin-bottom:6px; display:block;
}
.ticket-route{
  font-family:var(--font-display); font-size:30px; line-height:1.15; letter-spacing:.01em;
  color:var(--ink);
}
.ticket-route .seg{white-space:nowrap}
.ticket-route .arrow{color:var(--buoy); margin:0 3px}
.ticket-route .dot{color:var(--buoy); margin:0 4px}
.ticket-dates{ font-family:var(--font-mono); color:var(--ink-70); font-size:13px; margin-top:8px}
.perf{
  position:relative; height:0; border-top:2px dashed var(--line); margin:0 0;
}
.perf::before, .perf::after{
  content:''; position:absolute; top:-11px; width:22px; height:22px; border-radius:50%;
  background:var(--ink);
}
.perf::before{left:-27px}
.perf::after{right:-27px}
.ticket-stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  padding:16px 20px 20px;
}
.tstat{ text-align:left }
.tstat .num{ font-family:var(--font-mono); font-weight:600; font-size:17px; color:var(--ink) }
.tstat .lbl{ font-size:10.5px; color:var(--ink-45); text-transform:uppercase; letter-spacing:.06em; margin-top:2px}


/* ============ LIVE CARD (countdown / today) ============ */
.overview-live{ margin:10px 0 2px }
.overview-live:empty{ display:none }
.live-card{
  background:var(--paper); border-radius:var(--radius-md); box-shadow:var(--shadow);
  padding:14px 16px; border-left:3px solid var(--buoy);
}
.live-card.countdown{ display:flex; align-items:center; gap:16px; }
.live-num{
  font-family:var(--font-display); font-size:44px; line-height:1; color:var(--buoy);
  min-width:50px; text-align:center;
}
.live-eyebrow{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal); font-weight:600;
}
.live-title{ font-family:var(--font-display); font-size:20px; margin-top:3px; }
.live-sub{ font-size:12.5px; color:var(--ink-70); margin-top:3px; line-height:1.4; }
.live-line{ font-size:13px; color:var(--ink); margin-top:7px; }
.live-line .ll-k{
  font-family:var(--font-mono); font-size:10px; font-weight:600; text-transform:uppercase;
  letter-spacing:.06em; color:var(--buoy); background:var(--buoy-10); border-radius:999px;
  padding:2px 7px; margin-right:7px;
}
.live-cta{
  margin-top:11px; border:none; cursor:pointer; background:var(--ink); color:var(--paper);
  font-family:var(--font-mono); font-size:12px; font-weight:600; padding:8px 14px; border-radius:999px;
}

/* ============ BRIEF LIST (overview narrative) ============ */
.brief{ background:var(--paper); border-radius:var(--radius-md); box-shadow:var(--shadow); padding:4px 16px; margin-bottom:10px}
.brief-row{ padding:14px 0; border-bottom:1px solid var(--line); display:flex; gap:12px}
.brief-row:last-child{border-bottom:none}
.brief-row .bd{ font-family:var(--font-mono); font-size:11px; color:var(--ink-45); flex:0 0 54px; padding-top:2px}
.brief-row .bc h4{ margin:0 0 3px; font-size:14.5px; font-weight:700}
.brief-row .bc p{ margin:0; font-size:13px; color:var(--ink-70); line-height:1.5}
