/* =============================================
   RICHMOND TONIGHT — style.css
   Theme: Tabloid masthead — sharp, editorial, no rounded corners
   ============================================= */

:root {
  --bg:           #f5f5f3;
  --bg-card:      #ffffff;
  --bg-mast:      #14171c;     /* dark masthead bg */
  --border:       rgba(15, 20, 30, 0.10);
  --border-strong:rgba(15, 20, 30, 0.20);
  --rule:         #14171c;     /* hard rules used as visual anchors */

  --amber:        #d97706;     /* masthead accent */
  --amber-dim:    #b45309;
  --green:        #16a34a;

  --text-primary:   #14171c;
  --text-secondary: #4a4f5e;
  --text-muted:     #7a8090;
  --text-on-dark:   #f5f5f3;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-serif:   'Times New Roman', 'Georgia', serif;

  --shadow-card-hover: 0 4px 14px rgba(15, 20, 30, 0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── HEADER (masthead) ────────────────────────── */

.site-header {
  background: var(--bg-mast);
  color: var(--text-on-dark);
  border-bottom: 4px solid var(--amber);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; flex-direction: column; line-height: 1; gap: 4px; cursor: pointer; user-select: none; }
.logo, .logo *, .logo-richmond, .logo-tonight { cursor: pointer; }
.logo:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; border-radius: 2px; }

.logo-richmond {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  text-transform: uppercase;
  line-height: 1;
}

.logo-tonight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.85;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.last-updated {
  font-size: 12px;
  color: var(--text-on-dark);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* ── DATE NAV ─────────────────────────────────── */

.date-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--rule);
}
.date-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.date-nav-inner::-webkit-scrollbar { display: none; }

.date-tabs { display: flex; gap: 0; white-space: nowrap; }

.date-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  cursor: pointer;
  background: var(--bg-card);
  color: inherit;
  border: 0;
  border-right: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
  position: relative;
  gap: 4px;
  font-family: inherit;
  min-width: 64px;
  /* Match the loading skeleton's tab height so the calendar row doesn't
     pop down when events.json loads in. Skeleton tabs reuse .date-tab so
     they inherit this. */
  min-height: 80px;
}
/* Each tab has a right border separating it from the next; the first tab
   also gets a left border so the row reads as evenly bracketed instead of
   floating loose on the left edge. */
.date-tab:first-child { border-left: 1px solid var(--border); }
.date-tab:hover { background: rgba(15,20,30,0.04); }
.date-tab.active {
  background: var(--bg-mast);
  color: var(--text-on-dark);
}
.date-tab.active .tab-day { color: var(--amber); }
.date-tab.active .tab-date { color: var(--text-on-dark); }
.date-tab.has-events .tab-dot { opacity: 1; }

.tab-day {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.tab-date {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  transition: color 0.15s;
}
.tab-dot {
  width: 4px; height: 4px;
  background: var(--amber);
  opacity: 0;
  margin-top: 2px;
  transition: opacity 0.15s;
}
.date-tab.today-tab .tab-day { color: var(--amber); }

/* ── MAIN ─────────────────────────────────────── */

.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  background: var(--bg);
}

/* Visually-hidden h1 — kept for SEO/screen-readers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── NOSCRIPT BANNER ──────────────────────────── */

.noscript-banner {
  margin: 36px auto;
  max-width: 640px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--amber);
  text-align: left;
}
.noscript-banner strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.noscript-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── SECTION LABEL ────────────────────────────── */

.hero-label, .browse-header { padding: 28px 0 12px; }

.hero-label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-label-stack {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

/* Weather forecast pinned to the right of the hero label. Two stacked
   lines — evening + late-evening forecast for Richmond. */
.hero-weather {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-secondary);
  text-align: right;
}
.weather-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.weather-link:hover { opacity: 0.7; }

.weather-line { white-space: nowrap; }
.weather-line .wh-time {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-right: 6px;
  font-size: 13px;
}
.weather-line .wh-cond { color: var(--text-primary); }
.weather-line .wh-temp { margin-left: 4px; color: var(--text-secondary); }
/* Dashes in the placeholder rows are muted so they read as "loading" rather
   than as real data. Replaced by full forecast text once weather lands. */
.weather-line-placeholder .wh-cond,
.weather-line-placeholder .wh-temp { color: var(--text-muted); }
.hero-label-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 3px solid var(--amber);
  padding-bottom: 6px;
}
.tonight-hero { padding-bottom: 28px; }

/* ── HERO CARDS ───────────────────────────────── */

.hero-events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--border);
}

.hero-card {
  display: flex;
  align-items: stretch;
  color: inherit;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.15s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.4s ease both;
}
.hero-card:hover { background: #fafaf8; box-shadow: var(--shadow-card-hover); }

/* Nested anchors in the hero card — name+subtitle and CTA both go to the
   event page, venue goes to Google Maps. All inherit color and lose
   underline; each region gets its own hover affordance. */
.card-venue,
.card-title,
.card-cta {
  text-decoration: none;
  color: inherit;
}
.card-title:hover .card-name { color: var(--category-color, var(--amber)); }

/* Map-pin icon that fades in to the right of the venue name on hover —
   signals "this opens Google Maps" without an ugly underline. */
.venue-pin {
  flex-shrink: 0;
  margin-left: 4px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  vertical-align: -3px;
}
.card-venue:hover .venue-pin,
.row-venue:hover .venue-pin {
  opacity: 0.85;
  transform: translateX(0);
}

.card-bar {
  width: 6px;
  flex-shrink: 0;
  /* Venue colour (the pill bg) takes priority for the stripe; falls back to
     category if --venue-color isn't set, then to amber. */
  background: var(--venue-color, var(--category-color, var(--amber)));
}

.card-body {
  flex: 1;
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  min-height: 230px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-card:nth-child(1) { animation-delay: 0.04s; }
.hero-card:nth-child(2) { animation-delay: 0.08s; }
.hero-card:nth-child(3) { animation-delay: 0.12s; }
.hero-card:nth-child(4) { animation-delay: 0.16s; }

/* Category sits in flow at the top-left of the card body, above the time.
   Sized small with letter-spacing so it reads as a label, not a heading. */
.card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 10px;
}
.category-icon { font-size: 16px; line-height: 1; }
.category-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--category-color, var(--text-primary));
}

/* Row containing the main time and the small-caps gates line beside it.
   nowrap keeps the gates string on the same baseline as the big time.
   No padding-right — the gates line is free to extend toward the card
   edge so longer strings like "Gates 5:30 PM (Members 5:00 PM)" display
   in full. */
.card-time-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
}
/* Small caps gates line, baseline-aligned to the bottom of the big time.
   No truncation — long strings stay on one line and use whatever space
   is available to the right of the time. */
.card-gates {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
/* MCG gates lines link to the #gates anchor on the event page. Keep the
   same small-caps grey look as the non-link version; warm to the card's
   category colour on hover so the user knows it's clickable. */
.card-gates-link {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s;
}
.card-gates-link:hover {
  color: var(--category-color, var(--amber));
}
.card-time {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}
.card-time .ampm {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-left: 6px;
  vertical-align: 4px;
}
.card-time.no-time {
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Venue sits directly under the time. The venue pill keeps its colored chip
   look; the full venue name reads beside it. */
.card-venue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-top: 8px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-title { margin-top: 16px; margin-bottom: 14px; }
.card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}
.card-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-secondary);
  margin-top: 4px;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  align-self: flex-end;
  transition: color 0.15s;
}
.hero-card:hover .card-cta { color: var(--category-color, var(--amber)); }
.cta-arrow { transition: transform 0.15s; }
.hero-card:hover .cta-arrow { transform: translateX(3px); }

/* ── EMPTY STATE ──────────────────────────────── */

.empty-state {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.empty-icon  { font-size: 44px; margin-bottom: 12px; }
.empty-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.empty-sub { font-size: 14px; color: var(--text-muted); }

/* ── BROWSE / ROW CARDS ───────────────────────── */

.browse-section { padding-top: 12px; }
.browse-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 3px solid var(--amber);
  padding-bottom: 6px;
  display: inline-block;
}

.day-group {
  margin-bottom: 28px;
  animation: fadeUp 0.35s ease both;
}
.day-group:nth-child(1) { animation-delay: 0.04s; }
.day-group:nth-child(2) { animation-delay: 0.08s; }
.day-group:nth-child(3) { animation-delay: 0.12s; }

.day-group-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
}
.day-group-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
  line-height: 1;
}
.day-group-date {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.row-card {
  display: grid;
  grid-template-columns: 104px 1fr 16px;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: background 0.15s;
}
.row-card:hover { background: rgba(15,20,30,0.03); }

/* Nested anchors in row cards mirror the hero card: name+subtitle and the
   arrow → event page, venue → Google Maps. */
.row-event-link,
.row-venue,
.row-arrow {
  text-decoration: none;
  color: inherit;
}
.row-event-link { display: block; }
.row-event-link:hover .row-name { color: var(--amber); }

.row-time-col {
  display: flex;
  align-items: center;
  gap: 16px;
}
.row-cat-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.row-time-stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.row-time-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.row-ampm {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 2px;
}
.row-time-col.no-time {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.row-info { min-width: 0; }
.row-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}
.row-card:hover .row-name { color: var(--amber); }

.row-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.3;
  color: var(--text-secondary);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-venue {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.row-event-link + .row-venue { margin-top: 6px; }
.row-subtitle + .row-venue { margin-top: 6px; }

.row-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--category-color, var(--text-secondary));
  text-align: right;
  white-space: nowrap;
}

.row-arrow {
  font-size: 16px;
  color: var(--text-muted);
  text-align: right;
  transition: transform 0.15s, color 0.15s;
}
.row-card:hover .row-arrow { color: var(--amber); transform: translateX(3px); }

/* ── GETTING TO RICHMOND ──────────────────────── */

/* Sponsored section — same vertical rhythm as the Coming Up / Getting Here
   sections so they all share the same heading treatment. The widget injects
   its own markup into .sponsored-widget; we don't style the inner content. */
.sponsored-section {
  padding-top: 12px;
  margin-top: 8px;
}
.sponsored-section .browse-header { margin-bottom: 16px; }
.sponsored-widget { min-height: 80px; }

.getting-here {
  padding-top: 12px;
  margin-top: 8px;
}
.getting-here .browse-header { margin-bottom: 16px; }

.getting-here-map {
  display: block;
  border: 1px solid var(--border);
  background: var(--bg-card);
  line-height: 0;
  margin-bottom: 14px;
  transition: border-color 0.15s, box-shadow 0.2s;
}
.getting-here-map:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.getting-here-map img {
  display: block;
  width: 100%;
  height: auto;
}

.getting-here-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.getting-here-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 760px;
  flex: 1 1 360px;
}
.getting-here-note a {
  color: var(--amber-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.getting-here-note a:hover { color: var(--amber); }

.getting-here-status {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 4px;
  transition: color 0.15s;
}
.getting-here-status:hover { color: var(--amber); }

/* ── VENUE PILL ───────────────────────────────── */

.venue-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────── */

.site-footer {
  border-top: 4px solid var(--rule);
  padding: 32px 24px;
  background: var(--bg-card);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-venues {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.footer-venues .sep { color: var(--amber); }
.footer-note {
  font-size: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.55;
}

.footer-locale {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-locale-map {
  display: block;
  width: 72px;
  height: auto;
  opacity: 0.6;
}
.footer-locale-line {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── RESPONSIVE ───────────────────────────────── */

@media (max-width: 500px) {
  body { font-size: 15px; }

  .header-inner { padding: 14px 16px; }
  .logo-richmond { font-size: 24px; }
  .date-tab { padding: 12px 16px; min-width: 56px; }
  .tab-date { font-size: 20px; }
  .main { padding: 0 16px 60px; }

  .hero-events { grid-template-columns: 1fr; border-left: none; }
  .hero-card { border-right: none; }
  .card-time { font-size: 32px; }
  .card-name { font-size: 20px; }
  .day-group-name { font-size: 22px; }
  .row-card { grid-template-columns: 96px 1fr 14px; gap: 12px; }
  .row-time-col { gap: 14px; }
  .row-cat-icon { font-size: 16px; }
  .row-time-num { font-size: 20px; }
}

/* ── SKELETON PLACEHOLDERS ────────────────────── */
/* Static placeholders rendered in index.html so the layout is stable before
   events.json loads. Replaced wholesale by app.js render() — no JS needed
   to mount or tear them down. */

.skeleton .card-bar      { background: #d1d5db; }
.skeleton                 { animation: none; }

.skeleton .card-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Match .card-body min-height so the skeleton doesn't shrink relative to
     the real card and cause a layout pop when events.json loads in. */
  min-height: 230px;
}

.skel {
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  animation: rt-skel-shimmer 1.4s ease-in-out infinite;
}

.skel-cat        { height: 12px; width: 100px; align-self: flex-end; }
.skel-time       { height: 32px; width: 88px;  margin-top: 4px; }
.skel-venue      { height: 14px; width: 60%; }
.skel-name       { height: 18px; width: 75%; }
.skel-cta        { height: 14px; width: 56px; align-self: flex-end; margin-top: auto; }

.row-card.skeleton { min-height: 60px; }
.skel-row-info     { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.skel-row-time     { height: 28px; width: 80px; }
.skel-row-name     { height: 14px; width: 60%; }
.skel-row-venue    { height: 11px; width: 40%; }
.skel-row-arrow    { height: 12px; width: 12px; justify-self: end; }

/* Date-tab skeletons. Reuse .date-tab so padding + border + flex layout
   match the real tabs exactly — only the inner spans differ. */
.date-tab.skeleton { pointer-events: none; cursor: default; }
.skel-tab-day      { height: 8px;  width: 28px; margin-bottom: 6px; }
.skel-tab-date     { height: 16px; width: 22px; }

@keyframes rt-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── CATEGORY COLOUR TOKENS ───────────────────── */
/* Applied via JS as inline --category-color on each card */
