/* ===== DESIGN TOKENS (dark-only) ===== */
    :root {
      --gold: #e5a00d;
      --red: #e50914;
      --blue-50: rgba(1,51,207,0.08);
      --blue-100: rgba(1,51,207,0.12);
      --blue: #0133cf;
      --blue-dark: #012ba8;
      --purple: #6f1052;
      --purple-light: #3a1f32;
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-300: #d1d5db;
      --gray-500: #475569;
      --gray-600: #4b5563;
      --gray-700: #374151;
      --gray-800: #1f2937;
      --gray-900: #111827;
      --bg: #0d0d0d;
      --bg-rgb: 13,13,13;
      --card-bg: #1a1a1a;
      --text-primary: #f1f1f6;
      --text-body: #c8c8d8;
      --text-secondary: #9999b0;
      --text-muted: #a3adc9;
      --border: #222238;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
      --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
      --guide-ch-bg: #1a1a2e;
      --guide-ch-text: #b0b0c8;
      --radius: 12px;
      --font-display: 'Plus Jakarta Sans', sans-serif;
      --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --section-nav-top: 56px;
      --sticky-stack-offset: 120px;
    }

    /* ===== WEEKEND GOLD THEME ===== */
    

    /* ===== DAY DIVIDER ===== */
    .day-divider {
      background: #0d0d0d;
      padding: 28px 24px 20px;
      text-align: center;
      border-top: 3px solid #e5a00d;
      border-bottom: 1px solid rgba(245,197,24,0.25);
      margin: 40px -24px 24px;
    }
    .day-divider:first-child { margin-top: 0; }
    .day-divider-label {
      display: block;
      font-family: var(--font-display);
      font-size: 36px; font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.1;
    }
    .day-divider-date {
      display: block;
      font-size: 13px; font-weight: 600;
      color: rgba(245,197,24,0.85);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-top: 4px;
    }

    /* ===== WEEKEND BADGES ===== */
    .badge-family {
      background: #059669; color: #fff;
      font-size: 12px; font-weight: 700;
      padding: 2px 8px; border-radius: 10px;
      letter-spacing: 0.5px;
    }
    .badge-spotlight {
      background: #4f46e5; color: #fff;
      font-size: 12px; font-weight: 700;
      padding: 2px 8px; border-radius: 10px;
      letter-spacing: 0.5px;
    }
    .badge-binge {
      background: #7c3aed; color: #fff;
      font-size: 12px; font-weight: 700;
      padding: 2px 8px; border-radius: 10px;
      letter-spacing: 0.5px;
    }
    .binge-info {
      font-size: 12px; color: var(--text-body);
      font-style: italic; margin-top: 4px;
    }
    .badge-rating {
      background: #374151; color: #f9fafb;
      font-size: 12px; font-weight: 700;
      padding: 2px 8px; border-radius: 10px;
      letter-spacing: 0.5px;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: var(--font-ui);
      background: var(--bg);
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
    }
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
    }
    a { color: var(--blue); transition: color 0.15s; }
    a:hover { color: #3366ff; }
    .sr-only {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    [id^="section-"], #hero-section, #also-tonight, [id^="day-"], [id$="-hero-section"], [id*="-section-"], [id$="-guide"], [id$="-sports"] { scroll-margin-top: var(--sticky-stack-offset); }
    .skip-link {
      position: fixed; top: -40px; left: 12px;
      background: var(--gold); color: #111; padding: 8px 16px;
      font-weight: 700; font-size: 14px; border-radius: 4px;
      z-index: 1000; text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 12px; }

    /* ===== HEADER — slim top bar ===== */
    .site-header {
      background: #0d0d0d;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 200;
    }
    .site-header .brand {
      font-size: 20px; font-weight: 900; color: #fff;
      letter-spacing: -1px; text-decoration: none;
    }
    .site-header .brand .dot { color: var(--gold); }
    .site-header .header-date {
      font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.86);
      letter-spacing: 1.5px; text-transform: uppercase;
    }

    /* ===== SECTION NAV — pills inside header area ===== */
    .section-nav {
      background: #0d0d0d;
      border-bottom: 1px solid #222;
      padding: 0 24px 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.38) transparent;
      position: sticky;
      top: var(--section-nav-top);
      z-index: 190;
    }
    .section-nav::-webkit-scrollbar { height: 6px; }
    .section-nav::-webkit-scrollbar-track { background: transparent; }
    .section-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.34); border-radius: 999px; }
    .section-nav a {
      display: inline-flex; align-items: center; gap: 5px;
      text-decoration: none;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.86);
      white-space: nowrap;
      min-height: 36px;
      padding: 8px 16px;
      border-radius: 20px;
      border: 1px solid transparent;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    }
    .section-nav a:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
    .section-nav a[aria-current="true"] {
      color: #fff; background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.15);
    }
    .section-nav .nav-dot {
      width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0;
    }

    /* ===== LAYOUT CONTAINERS ===== */
    .page-wrap { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

    /* ===== HERO — TV Insider style 65/35 split ===== */
    .hero-split {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 0;
      margin: 20px 0;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 380px;
    }
    @media (max-width: 960px) {
      .hero-split { grid-template-columns: 1fr; min-height: auto; }
    }
    .hero-main {
      position: relative;
      overflow: hidden;
      background: #111;
    }
    .hero-main img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .hero-main-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 80px 32px 28px;
      background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 70%);
    }
    .hero-main-overlay .hero-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--gold); color: #111;
      font-size: 10px; font-weight: 800;
      padding: 4px 12px; border-radius: 20px;
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .hero-main-overlay h2 {
      color: #fff; font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.5px;
      margin-bottom: 6px;
    }
    .hero-main-overlay .hero-meta {
      color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 500;
    }
    .hero-main-overlay .hero-meta .sep { margin: 0 6px; opacity: 0.4; }
    .hero-sidebar {
      background: var(--card-bg);
      padding: 24px;
      display: flex;
      flex-direction: column;
    }
    .hero-sidebar-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px; padding-bottom: 8px;
      border-bottom: 2px solid var(--gold);
    }
    .hero-sidebar .hero-editorial {
      font-family: var(--font-display);
      font-size: 17px; line-height: 1.7; color: var(--text-body);
      margin-bottom: 16px; flex: 1;
    }
    .hero-sidebar .hero-cast {
      font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px;
    }
    .hero-sidebar .hero-cast strong { color: var(--text-secondary); }
    .hero-sidebar .calendar-links {
      display: flex; gap: 6px; flex-wrap: wrap;
    }
    .hero-sidebar .calendar-links a {
      display: inline-block; color: var(--blue);
      font-size: 11px; font-weight: 600;
      text-decoration: none; border: 1px solid var(--blue);
      padding: 5px 12px; border-radius: 20px;
      transition: background 0.15s;
    }
    .hero-sidebar .calendar-links a:hover { background: var(--blue-50); }

    /* Hero fallback (no image) */
    .hero-split--noimg { grid-template-columns: 1fr; }
    .hero-split--noimg .hero-sidebar { padding: 32px; }

    /* ===== TODAY'S PICKS — horizontal scroll strip (JustWatch style) ===== */
    .picks-strip {
      margin: 28px 0 8px;
    }
    .strip-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px;
    }
    .strip-header h2 {
      font-size: 15px; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .strip-header .strip-count {
      font-size: 12px; font-weight: 600; color: var(--text-muted);
    }
    .strip-scroll {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 12px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: color-mix(in srgb, var(--text-secondary) 70%, transparent) transparent;
    }
    .strip-scroll::-webkit-scrollbar { height: 8px; }
    .strip-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 999px; }
    .strip-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 999px; }
    .strip-scroll-wrap {
      position: relative;
    }
    .strip-scroll-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 42px;
      height: calc(100% - 10px);
      pointer-events: none;
      background: linear-gradient(to left, var(--bg) 0%, rgba(var(--bg-rgb),0) 100%);
      opacity: 0.5;
      transition: opacity 0.2s;
    }
    .strip-scroll-wrap[data-overflow="false"]::after { opacity: 0; }
    .strip-scroll-controls {
      margin-top: 8px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
    }
    .scroll-hint {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .carousel-help {
      margin-top: 6px;
      font-size: 11px;
      color: var(--text-secondary);
      letter-spacing: 0.01em;
    }
    .scroll-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--card-bg);
      color: var(--text-secondary);
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
    }
    .scroll-btn:hover:not(:disabled) {
      background: var(--blue-50);
      color: var(--blue);
      border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
    }
    .scroll-btn:disabled {
      opacity: 0.38;
      cursor: default;
    }
    .strip-scroll-wrap[data-overflow="false"] .strip-scroll-controls {
      opacity: 0.45;
    }

    /* ===== TWO-COLUMN LAYOUT ===== */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 28px;
      align-items: start;
      margin-top: 20px;
    }
    @media (max-width: 1024px) {
      .two-col { grid-template-columns: 1fr; }
    }
    .col-main { min-width: 0; }
    .col-sidebar {
      display: flex; flex-direction: column; gap: 16px;
      position: sticky; top: 80px;
      max-height: calc(100vh - 100px);
      overflow-y: auto;
      scrollbar-width: none;
    }
    .col-sidebar::-webkit-scrollbar { display: none; }
    @media (max-width: 1024px) {
      .col-sidebar { position: static; }
    }

    /* ===== SECTION BLOCKS ===== */
    .section-block {
      margin-bottom: 40px;
    }
    .section-header {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--section-color, var(--blue));
    }
    .section-dot {
      width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
    }
    .section-title {
      font-size: 16px; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--section-color, var(--blue));
      margin: 0; padding: 0;
    }
    .section-count {
      margin-left: auto;
      font-size: 11px; font-weight: 600; color: var(--text-muted);
    }

    /* ===== PICK CARDS ===== */

    /* Horizontal card — TV Insider article style (default in sections) */
    .pick-h {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
      margin-bottom: 14px;
      border-left: 3px solid var(--section-color, var(--blue));
    }
    .pick-h:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    @media (max-width: 640px) {
      .pick-h { grid-template-columns: 120px 1fr; }
    }
    .pick-h-img {
      overflow: hidden;
    }
    .img-fallback {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--text-secondary);
      background: color-mix(in srgb, var(--blue-50) 55%, var(--card-bg));
      border: 1px dashed var(--border);
      border-radius: 8px;
      padding: 12px;
      min-height: 120px;
    }
    .pick-h-img img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      aspect-ratio: 4/3;
      transition: transform 0.4s ease;
    }
    .pick-h:hover .pick-h-img img { transform: scale(1.05); }
    .pick-h-body {
      padding: 16px 20px;
      display: flex; flex-direction: column; justify-content: center;
      min-width: 0;
    }
    .pick-h-badges {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 6px; flex-wrap: wrap;
    }
    .badge {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700;
      padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px;
    }
    .badge-time {
      background: #3a1f32;
      color: #ffdff1;
      border: 1px solid #d99ab8;
    }
    .badge-new { background: var(--gold); color: #111; letter-spacing: 1px; font-size: 10px; }
    .badge-cat {
      font-weight: 600; font-size: 10px; letter-spacing: 0.5px;
      background: #2b3140 !important;
      color: #dce4ff !important;
      border-color: #3d455a !important;
    }

    .pick-h-title {
      font-family: var(--font-display);
      font-size: 19px; font-weight: 700; line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }
    .pick-h-subtitle {
      font-style: italic; font-size: 13px; color: var(--text-muted);
      margin-bottom: 4px;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .pick-h-meta {
      font-size: 12px; color: var(--text-muted); font-weight: 500;
      display: flex; flex-wrap: wrap; gap: 3px;
    }
    .pick-h-meta .sep { color: var(--border); margin: 0 2px; }
    .pick-h-meta .streaming-note { color: var(--blue); font-weight: 600; }
    .pick-h-editorial {
      font-size: 15px; line-height: 1.7; color: var(--text-body);
      margin-top: 8px;
      display: block;
      overflow: visible;
    }
    .pick-h-more {
      margin-top: 6px;
      border: 0;
      background: none;
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      padding: 0;
      cursor: pointer;
    }
    @media (max-width: 640px) {
      .pick-h-editorial {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
      }
      .pick-h-editorial.expanded {
        display: block;
        overflow: visible;
      }
    }

    /* Pick card for strip (vertical poster) */
    .pick-poster {
      flex: 0 0 200px;
      scroll-snap-align: start;
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .pick-poster:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .pick-poster:focus-visible,
    .pick-h:focus-visible {
      outline: 3px solid var(--blue);
      outline-offset: 2px;
      box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
    }
    .pick-poster-img {
      width: 100%; aspect-ratio: 16/9;
      object-fit: cover; display: block;
    }
    .pick-poster-body { padding: 10px 12px 14px; }
    .pick-poster-time {
      font-size: 10px; font-weight: 700; color: var(--purple);
      letter-spacing: 0.5px; margin-bottom: 4px;
    }
    .pick-poster-title {
      font-family: var(--font-display);
      font-size: 14px; font-weight: 700; line-height: 1.2;
      color: var(--text-primary); margin-bottom: 3px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      white-space: normal;
      max-height: 2.4em;
    }
    .pick-poster-channel {
      font-size: 11px; color: var(--text-muted);
    }

    /* Aired/Live states */
    .pick-aired img { filter: brightness(0.8) saturate(0.6); }
    .pick-aired { position: relative; }
    .pick-aired::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.08); pointer-events: none;
      border-radius: inherit;
    }
    .pick-live { box-shadow: 0 0 0 2px #dc2626, var(--shadow-md) !important; }
    .aired-badge, .live-badge {
      display: inline-block;
      font-size: 10px; font-weight: 800; padding: 3px 8px;
      border-radius: 4px; letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 6px;
    }
    .aired-badge { background: var(--gray-500); color: #fff; }
    .live-badge {
      background: #dc2626; color: #fff;
      display: inline-flex; align-items: center; gap: 5px;
    }
    .live-dot {
      width: 7px; height: 7px; background: #fff;
      border-radius: 50%; animation: pulse-live 2s infinite;
    }
    @keyframes pulse-live {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.6); }
    }

    /* ===== DETAIL MODAL (expanded pick) ===== */
    .pick-detail {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      margin-bottom: 20px;
      border-left: 4px solid var(--section-color, var(--blue));
    }
    .pick-detail-top {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 0;
    }
    @media (max-width: 768px) { .pick-detail-top { grid-template-columns: 1fr; } }
    .pick-detail-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      aspect-ratio: 4/3;
    }
    .pick-detail-body { padding: 24px 28px; }
    .pick-detail-body .pick-h-title { font-size: 22px; margin-bottom: 6px; }
    .pick-detail .calendar-links { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
    .pick-detail .calendar-links a {
      display: inline-block; color: var(--blue);
      font-size: 12px; font-weight: 600;
      text-decoration: none; border: 1px solid var(--blue);
      padding: 5px 12px; border-radius: 20px;
      transition: background 0.15s;
    }
    .pick-detail .calendar-links a:hover { background: var(--blue-50); }
    .pick-detail-cast {
      font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: 10px;
    }
    .pick-detail-cast strong { color: var(--text-secondary); }

    /* ===== SIDEBAR WIDGETS ===== */
    .sidebar-widget {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 18px 20px;
    }
    .widget-title {
      font-family: var(--font-ui);
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted);
      margin: 0 0 10px 0; padding: 0 0 8px 0;
      border-bottom: 1px solid var(--border);
    }
    /* Schedule widget */
    .sched-item {
      display: flex; align-items: baseline; gap: 8px;
      padding: 5px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .sched-item:last-child { border-bottom: none; }
    .sched-time { color: var(--purple); font-weight: 700; white-space: nowrap; min-width: 58px; }
    .sched-title {
      color: var(--text-primary); font-weight: 600; flex: 1; min-width: 0;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .sched-chan { color: var(--text-muted); font-size: 11px; white-space: nowrap; }

    /* Also tonight widget */
    .also-item { padding: 8px 0; border-bottom: 1px solid var(--border); }
    .also-item:last-child { border-bottom: none; }
    .also-time { color: var(--purple); font-size: 12px; font-weight: 700; }
    .also-title { color: var(--text-primary); font-size: 14px; font-weight: 600; }
    .also-chan { color: var(--text-muted); font-size: 12px; }
    .also-liner { color: var(--text-secondary); font-size: 13px; line-height: 1.5; margin-top: 2px; }
    .also-more[hidden] { display: none; }
    .also-toggle {
      margin-top: 10px;
      width: 100%;
      border: 1px solid var(--blue);
      background: var(--blue-50);
      color: var(--blue);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      padding: 7px 10px;
      cursor: pointer;
    }

    /* Poll widget */
    .poll-row { display: flex; justify-content: center; gap: 20px; }
    .poll-row a { text-decoration: none; text-align: center; }
    .poll-emoji { font-size: 26px; display: block; }
    .poll-label { font-size: 10px; color: var(--text-muted); }

    /* Share widget */
    .share-links { display: flex; flex-direction: column; gap: 6px; }
    .share-links a {
      display: block; color: var(--blue);
      font-size: 12px; font-weight: 600;
      text-decoration: none; border: 1px solid var(--blue);
      padding: 6px 12px; border-radius: 6px;
      text-align: center; transition: background 0.15s;
    }
    .share-links a:hover { background: var(--blue-50); }

    /* Engagement CTA */
    .sidebar-cta {
      background: linear-gradient(135deg, #1a1a2e, #0f3460);
      border-radius: var(--radius); padding: 20px; text-align: center;
    }
    .sidebar-cta h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
    .sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.5; margin-bottom: 10px; }
    .sidebar-cta a, .sidebar-cta button {
      display: inline-block; color: #111; background: var(--gold);
      font-size: 12px; font-weight: 700;
      text-decoration: none; padding: 7px 18px; border-radius: 20px;
      border: 1px solid #8a5b00;
      cursor: pointer;
    }

    /* Subscribe CTA */
    .sidebar-subscribe {
      text-align: center; border: 2px dashed var(--blue);
      border-radius: var(--radius); padding: 16px;
    }
    .sidebar-subscribe h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
    .sidebar-subscribe p { color: var(--text-secondary); font-size: 11px; line-height: 1.5; margin-bottom: 8px; }
    .sidebar-subscribe a, .sidebar-subscribe button {
      display: inline-block; color: #fff; background: var(--blue);
      font-size: 12px; font-weight: 700;
      text-decoration: none; padding: 7px 18px; border-radius: 20px;
      border: 1px solid var(--blue);
      cursor: pointer;
    }

    .sidebar-form {
      display: grid;
      gap: 8px;
      margin-top: 8px;
    }
    .sidebar-form input,
    .sidebar-form textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 10px;
      font-size: 12px;
      font-family: var(--font-ui);
      color: var(--text-primary);
      background: var(--card-bg);
    }
    .sidebar-form textarea {
      min-height: 72px;
      resize: vertical;
      line-height: 1.45;
    }
    .sidebar-form .form-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }
    .sidebar-form .form-required {
      color: #dc2626;
      font-weight: 800;
    }
    .sidebar-form .field-error {
      margin: -2px 0 0;
      color: #b91c1c;
      font-size: 11px;
      line-height: 1.35;
    }
    .sidebar-form .field-error[hidden] { display: none; }
    .sidebar-form .field-invalid {
      border-color: #dc2626;
      box-shadow: inset 0 0 0 1px rgba(220,38,38,0.2);
    }
    .form-honeypot {
      position: absolute !important;
      left: -10000px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
    .sidebar-form .form-status {
      margin: 0;
      font-size: 11px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* Archive */
    .archive-links { display: flex; flex-wrap: wrap; gap: 6px; }
    .archive-links a {
      display: inline-block; font-size: 12px;
      color: var(--blue); text-decoration: none;
      padding: 5px 10px; border-radius: 6px;
      background: var(--blue-50); font-weight: 600;
    }
    .archive-links a:hover { background: var(--blue-100); }

    /* ===== TIMELINE BAR ===== */
    
    .timeline-section { margin: 24px 0 8px; }
    .tl-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 10px;
    }
    .tl-wrap {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 16px; overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .tl-mobile-list {
      display: none;
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 12px;
      border: 1px solid var(--border);
    }
    .tl-mobile-channel {
      margin: 8px 0 4px;
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .tl-mobile-link {
      display: grid;
      grid-template-columns: 68px 1fr;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 10px 12px;
      margin-bottom: 6px;
      border-radius: 8px;
      background: color-mix(in srgb, var(--blue) 7%, var(--card-bg));
      color: var(--text-primary);
      text-decoration: none;
      border: 1px solid color-mix(in srgb, var(--blue) 20%, transparent);
    }
    .tl-mobile-link:hover {
      background: color-mix(in srgb, var(--blue) 12%, var(--card-bg));
    }
    .tl-mobile-time {
      color: var(--blue);
      font-size: 12px;
      font-weight: 800;
    }
    .tl-mobile-title {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
    }
    .tl-inner { position: relative; min-width: 700px; }
    .tl-hours {
      display: flex; justify-content: space-between;
      margin-bottom: 8px;
    }
    .tl-hours span {
      font-size: 10px; font-weight: 600;
      color: var(--text-muted); text-align: center; flex: 1;
    }
    .tl-row {
      display: grid;
      grid-template-columns: 104px 1fr;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .tl-row-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text-secondary);
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .tl-track {
      position: relative;
      height: 40px;
      background: rgba(255,255,255,0.04);
      border-radius: 6px;
    }
    .tl-now-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #ef4444;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 8px rgba(239,68,68,0.55);
      z-index: 4;
      pointer-events: none;
    }
    .tl-block {
      position: absolute; top: 3px; height: 34px;
      border-radius: 5px; border: none;
      background-image: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.15) 100%);
      background-blend-mode: multiply;
      display: flex; align-items: center;
      color: #fff;
      padding: 0 10px; cursor: pointer;
      overflow: hidden; white-space: nowrap;
      font-size: 12px; font-weight: 700; color: #fff;
      transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 6px rgba(0,0,0,0.2);
    }
    .tl-block:hover {
      opacity: 1; transform: scaleY(1.12); z-index: 2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    .tl-block:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
      box-shadow: 0 0 0 4px rgba(229,160,13,0.3);
      z-index: 3;
    }
    @media (max-width: 640px) {
      .tl-row { grid-template-columns: 78px 1fr; }
      .tl-row-label { font-size: 10px; letter-spacing: 0.03em; }
      .tl-block { font-size: 10px; }
      .tl-wrap { display: none; }
      .tl-mobile-list { display: block; }
    }
    

    /* ===== SPORTS SCOREBOARD (ESPN-style) ===== */
    .sports-section { margin-bottom: 24px; }
    .sb-games-overflow { border-top: 1px solid var(--border); }
    .sb-games-overflow summary {
      display: flex; align-items: center; justify-content: center;
      gap: 6px; padding: 8px 16px;
      font-size: 12px; font-weight: 700;
      color: var(--text-muted); cursor: pointer;
      list-style: none;
      transition: color 0.15s, background 0.15s;
    }
    .sb-games-overflow summary::-webkit-details-marker { display: none; }
    .sb-games-overflow summary::after { content: ' \25BC'; font-size: 9px; }
    .sb-games-overflow[open] summary::after { content: ' \25B2'; }
    .sb-games-overflow summary:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
    /* ===== SPORTS SCOREBOARD ===== */
    .sb-league {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .sb-league-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      background: var(--lc);
      background: linear-gradient(135deg, var(--lc), color-mix(in srgb, var(--lc) 65%, #000));
      color: #fff;
    }
    .sb-league-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .sb-league-icon img {
      width: 26px; height: 26px;
      object-fit: contain;
      filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    }
    .sb-league-fallback {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #fff;
      background: rgba(0,0,0,0.22);
    }
    .sb-league-emoji {
      font-size: 22px;
      line-height: 1;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    }
    .sb-league-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .sb-league-abbr {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.04em;
      line-height: 1.1;
    }
    .sb-league-full {
      font-size: 10px;
      font-weight: 500;
      opacity: 0.7;
      letter-spacing: 0.03em;
    }
    .sb-league-count {
      margin-left: auto;
      font-size: 10px;
      font-weight: 600;
      opacity: 0.65;
    }
    .scoreboard-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 12px;
      align-items: start;
    }
    @media (min-width: 760px) {
      .scoreboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1200px) {
      .scoreboard-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    .scoreboard-grid .sb-league {
      display: flex;
      flex-direction: column;
      margin: 0;
    }
    .scoreboard-grid.scoreboard-grid--masonry {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .scoreboard-col {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .sb-games { padding: 2px 0; }
    .sb-game {
      display: grid;
      grid-template-columns: 62px 1fr auto;
      grid-template-rows: auto;
      gap: 0 10px;
      padding: 8px 16px;
      border-bottom: 1px solid var(--border);
      align-items: center;
      transition: background 0.15s;
    }
    .sb-game:last-child { border-bottom: none; }
    .sb-game:hover { background: rgba(255,255,255,0.05); background: color-mix(in srgb, var(--lc) 4%, transparent); }
    .sb-game-time {
      display: flex; align-items: baseline; gap: 2px;
      grid-row: 1; grid-column: 1;
    }
    .sb-time {
      font-family: var(--font-display);
      font-size: 15px; font-weight: 700;
      color: var(--lc); line-height: 1;
    }
    .sb-ampm {
      font-size: 9px; font-weight: 700;
      color: color-mix(in srgb, var(--lc) 88%, #000 12%);
      opacity: 1;
      text-transform: uppercase;
    }
    .sb-game-teams {
      display: flex; align-items: baseline; gap: 6px;
      grid-row: 1; grid-column: 2;
      min-width: 0; flex-wrap: wrap;
    }
    .sb-away, .sb-home {
      font-family: var(--font-display);
      font-size: 14px; font-weight: 700;
      color: var(--text-primary); line-height: 1.2;
    }
    .sb-at {
      font-size: 10px; font-weight: 500;
      color: var(--text-muted);
      font-style: italic; flex-shrink: 0;
    }
    .sb-game-meta {
      grid-row: 1; grid-column: 3;
      display: flex; align-items: center;
    }
    .sb-channel {
      font-size: 10px; font-weight: 700;
      color: var(--lc);
      padding: 2px 8px; border-radius: 3px;
      background: rgba(255,255,255,0.08);
      background: color-mix(in srgb, var(--lc) 10%, transparent);
      letter-spacing: 0.4px; white-space: nowrap;
    }
    .sb-game-note {
      grid-row: 2; grid-column: 1 / -1;
      font-size: 12px; line-height: 1.4;
      color: var(--text-body);
      font-style: italic;
      margin-top: 3px;
      max-height: none;
      opacity: 1;
      overflow: visible;
    }
    @media (max-width: 759px) {
      .sb-game {
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        gap: 2px 8px; padding: 8px 12px;
      }
      .sb-game-time { grid-row: 1; grid-column: 1; }
      .sb-game-teams { grid-row: 1; grid-column: 2; gap: 4px; }
      .sb-away, .sb-home { font-size: 13px; }
      .sb-game-meta {
        grid-row: 2; grid-column: 2;
        justify-content: flex-start; margin-top: 2px;
      }
      .sb-game-note {
        grid-row: 3; grid-column: 1 / -1;
        max-height: none; opacity: 1; margin-top: 3px;
      }
    }

    /* ===== CHANNEL GUIDE (redesigned) ===== */
    .guide-section { margin: 32px 0; }
    .guide-timerange {
      font-weight: 500; color: var(--text-muted);
      font-size: 10px; margin-left: 8px; letter-spacing: 0;
      text-transform: none;
    }
    .guide-legend {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin: 12px 0 16px; padding: 0;
    }
    .guide-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 12px;
    }
    .guide-filter-btn {
      border: 1px solid var(--border);
      background: var(--card-bg);
      color: var(--text-secondary);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 5px 10px;
      cursor: pointer;
    }
    .guide-filter-btn[aria-pressed="true"] {
      background: var(--blue-50);
      border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
      color: var(--blue);
    }
    .guide-legend-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 11px; color: var(--text-secondary);
    }
    .guide-legend-dot {
      width: 10px; height: 10px; border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.12);
    }
    .guide-channel {
      display: grid;
      grid-template-columns: 100px 1fr;
      border-bottom: 1px solid var(--border);
      min-height: 58px;
      align-items: stretch;
    }
    .guide-channel:first-child { border-top: 1px solid var(--border); }
    .guide-ch-id {
      padding: 8px 12px;
      background: var(--guide-ch-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      border-right: 2px solid var(--border);
    }
    .guide-ch-logo {
      width: 72px;
      height: 32px;
      object-fit: contain;
      filter: saturate(1.04) contrast(1.12) drop-shadow(0 0 1px rgba(0,0,0,0.34));
      background: transparent;
      border: 1px solid rgba(203,213,225,0.28);
      border-radius: 6px;
      padding: 2px;
      box-sizing: border-box;
      transition: filter 0.18s ease;
    }
    .guide-ch-logo--ink {
      filter: saturate(1.02) contrast(1.08) drop-shadow(0 0 1px rgba(0,0,0,0.34));
    }
    .guide-ch-logo--lift {
      filter: saturate(1.08) brightness(1.72) contrast(1.2) drop-shadow(0 0 1.1px rgba(0,0,0,0.32));
    }
    .guide-ch-logo[data-contrast-unknown] {
      filter: saturate(1.05) brightness(1.18) contrast(1.14) drop-shadow(0 0 1.1px rgba(0,0,0,0.34));
    }
    .guide-ch-fallback {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 32px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: var(--guide-ch-text);
      border: 1px solid rgba(203,213,225,0.25);
    }
    .guide-ch-label {
      font-size: 10px;
      font-weight: 600;
      color: var(--guide-ch-text);
      text-align: center;
      line-height: 1.1;
      letter-spacing: 0.02em;
    }
    .guide-shows-wrap {
      position: relative;
      overflow: hidden;
    }
    .guide-shows-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 28px;
      height: 100%;
      pointer-events: none;
      background: linear-gradient(to left, var(--card-bg) 0%, rgba(var(--bg-rgb),0) 100%);
      opacity: 0.36;
      transition: opacity 0.2s;
    }
    .guide-shows-wrap[data-overflow="false"]::after { opacity: 0; }
    .guide-scroll-controls {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
      padding: 4px 4px 0;
    }
    .guide-scroll-hint {
      font-size: 10px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .guide-shows-wrap[data-overflow="false"] .guide-scroll-controls {
      opacity: 0;
      pointer-events: none;
      max-height: 0;
      overflow: hidden;
      padding-top: 0;
    }
    .guide-shows {
      display: flex;
      gap: 2px;
      padding: 4px 0;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(100,116,139,0.55) transparent;
    }
    .guide-shows::-webkit-scrollbar { height: 7px; }
    .guide-shows::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 999px; }
    .guide-shows::-webkit-scrollbar-thumb { background: rgba(100,116,139,0.48); border-radius: 999px; }
    .guide-show {
      display: flex;
      flex-direction: column;
      padding: 6px 12px;
      background: var(--bg);
      border-radius: 6px;
      min-width: 130px;
      flex-shrink: 0;
      border-left: 3px solid var(--genre-color, #374151);
    }
    .guide-show-pick {
      background: rgba(245,197,24,0.1);
      border-left: 3px solid var(--gold);
      box-shadow: inset 0 0 0 1px rgba(245,197,24,0.2);
    }
    .guide-show-time {
      font-size: 11px; font-weight: 700;
      color: var(--blue);
    }
    .guide-show-title {
      font-size: 13px; font-weight: 500;
      color: var(--text-primary);
      line-height: 1.3;
    }
    .guide-show-mark {
      display: inline-block;
      margin-right: 4px;
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
    }
    .guide-controls {
      display: flex;
      justify-content: flex-end;
      margin: 8px 0 10px;
    }
    .guide-toggle {
      border: 1px solid var(--blue);
      border-radius: 20px;
      background: var(--card-bg);
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 12px;
      cursor: pointer;
    }
    .guide-channel-extra {
      display: none;
    }
    .guide-section.expanded .guide-channel-extra {
      display: grid;
    }
    @media (max-width: 640px) {
      .guide-channel { grid-template-columns: 72px 1fr; }
      .guide-ch-logo { width: 52px; height: 24px; }
      .guide-ch-label { font-size: 9px; }
      .guide-show { min-width: 110px; }
    }

    /* ===== INTRO ===== */
    .intro-bar {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 16px 24px;
      margin: 12px 0;
      border-left: 3px solid var(--gold);
    }
    .intro-bar p {
      font-family: var(--font-display);
      font-size: 18px; line-height: 1.7;
      color: var(--text-body); font-style: italic;
    }
    .page-title {
      margin: 12px 0 10px;
      font-family: var(--font-display);
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }

    .issue-masthead {
      position: relative;
      overflow: hidden;
      margin: 18px 0 22px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(229,160,13,0.22), transparent 42%),
        linear-gradient(135deg, #050505 0%, #0d0d0d 42%, #131c37 100%);
      box-shadow: 0 24px 56px rgba(5, 8, 18, 0.22);
      isolation: isolate;
      color: #fff;
    }
    .issue-masthead::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, rgba(5,5,5,0.9) 10%, rgba(5,5,5,0.68) 42%, rgba(5,5,5,0.92) 100%),
        var(--masthead-art);
      background-size: cover;
      background-position: center;
      opacity: 0.96;
      transform: scale(1.03);
      z-index: -2;
    }
    .issue-masthead::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), transparent 32%),
        repeating-linear-gradient(
          120deg,
          rgba(255,255,255,0.035) 0,
          rgba(255,255,255,0.035) 1px,
          transparent 1px,
          transparent 16px
        );
      mix-blend-mode: soft-light;
      pointer-events: none;
      z-index: -1;
    }
    .issue-masthead-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
      gap: 24px;
      align-items: end;
      padding: 32px;
    }
    .issue-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.76);
      margin-bottom: 14px;
    }
    .issue-kicker::before {
      content: "";
      width: 44px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), rgba(255,255,255,0.24));
      border-radius: 999px;
    }
    .issue-subject {
      font-family: var(--font-display);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      margin: 0;
      max-width: 12ch;
      text-wrap: balance;
    }
    .issue-deck {
      margin-top: 16px;
      max-width: 64ch;
      font-size: 17px;
      line-height: 1.75;
      color: rgba(255,255,255,0.82);
    }
    .issue-stat-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
      max-width: 680px;
    }
    .issue-stat {
      padding: 12px 16px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .issue-stat-label {
      display: block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.58);
      margin-bottom: 6px;
    }
    .issue-stat-value {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(22px, 2.5vw, 30px);
      line-height: 1;
      letter-spacing: -0.04em;
      color: #fff;
    }
    .issue-hero-card {
      padding: 22px 22px 20px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(5,9,20,0.78), rgba(5,9,20,0.66));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 20px 46px rgba(0,0,0,0.26);
      backdrop-filter: blur(16px);
    }
    .issue-hero-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.62);
      margin-bottom: 12px;
    }
    .issue-hero-title {
      font-family: var(--font-display);
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin: 0;
      color: #fff;
    }
    .issue-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
    }
    .issue-hero-meta span:last-child {
      color: var(--gold);
    }
    .issue-hero-blurb {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.82);
    }
    .issue-hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .issue-panel-copy {
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255,255,255,0.78);
    }
    .issue-quick-links {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }
    .issue-quick-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      text-decoration: none;
      transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
    }
    .issue-quick-link:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.16);
    }
    .issue-quick-link-copy {
      min-width: 0;
    }
    .issue-quick-link-copy small {
      display: block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.58);
    }
    .issue-quick-link-copy strong {
      display: block;
      margin-top: 3px;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
      color: #fff;
    }
    .issue-quick-link-meta {
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .issue-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.78);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    @media (max-width: 980px) {
      .issue-masthead-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
      }
      .issue-subject {
        max-width: 16ch;
      }
    }
    @media (max-width: 640px) {
      :root {
        --section-nav-top: 62px;
        --sticky-stack-offset: 126px;
      }
      .issue-masthead {
        margin: 14px 0 18px;
        border-radius: 22px;
      }
      .issue-masthead-inner {
        padding: 20px;
        gap: 18px;
      }
      .issue-subject {
        max-width: none;
        font-size: clamp(30px, 10vw, 42px);
      }
      .issue-deck {
        font-size: 15px;
      }
      .issue-stat-grid {
        grid-template-columns: 1fr;
      }
      .issue-hero-card {
        padding: 18px;
        border-radius: 20px;
      }
      .issue-quick-link {
        padding: 12px;
      }
      .section-nav {
        padding: 0 14px 12px;
      }
      .section-nav a {
        min-height: 38px;
      }
    }

    /* ===== FOOTER ===== */
    .site-footer {
      text-align: center; padding: 40px 24px 48px;
      border-top: 1px solid var(--border);
      margin-top: 40px;
    }
    .site-footer p { color: var(--text-muted); font-size: 12px; line-height: 1.8; }
    .site-footer a { color: var(--blue); text-decoration: none; font-weight: 600; }

    .back-to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.28);
      background: #0d0d0d;
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(0,0,0,0.28);
      cursor: pointer;
      z-index: 220;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .back-to-top.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      .page-wrap { padding: 0 14px; }
      .hero-split { border-radius: 8px; }
      .pick-h { grid-template-columns: 100px 1fr; }
      .pick-poster { flex: 0 0 160px; }
    }
