/* Stream — esports broadcast-newsroom editorial system
   Paper-and-ink lilac surfaces, magazine rhythm, sticky editorial index rail,
   floating-panel geometry, hover-reveal-evidence interaction.
   No external font requests at runtime; Roboto is self-hosted via @font-face below. */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto Regular'), local('Roboto-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Roboto Medium'), local('Roboto-Medium');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Roboto Bold'), local('Roboto-Bold');
}

:root {
  --primary: #6657D9;
  --accent: #D94F8A;
  --accent-soft: #F4C8DC;
  --background: #F8F6FF;
  --surface: #FFFFFF;
  --surface-2: #ECE8FF;
  --surface-3: #E2DAF8;
  --ink: #24203D;
  --ink-soft: #3B3556;
  --muted: #68627E;
  --border: #D8D0FA;
  --rule: #C9BEF1;
  --success: #2E7D5B;
  --warn: #B5611A;

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-paper: 0 1px 0 rgba(36,32,61,0.04), 0 14px 32px rgba(102,87,217,0.08);
  --shadow-panel: 0 24px 48px -28px rgba(102,87,217,0.35);

  --grid-max: 1280px;
  --rail-width: 168px;
  --header-height: 76px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--background);
  background-image:
    radial-gradient(rgba(102,87,217,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: 'Roboto', sans-serif; color: var(--ink); line-height: 1.2; margin: 0 0 var(--space-4); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
h2 { font-size: clamp(24px, 2.4vw, 30px); }
h3 { font-size: 21px; }
h4 { font-size: 17px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
p { margin: 0 0 var(--space-4); }

.container { max-width: var(--grid-max); margin: 0 auto; padding: 0 var(--space-5); }
@media (max-width: 720px) { .container { padding: 0 var(--space-4); } }

/* ── Edition Masthead ─────────────────────────────── */
.masthead {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead-row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 10px 0;
}
.masthead-row .mast-cell { white-space: nowrap; }
@media (max-width: 899px) {
  .masthead-row { gap: 8px; overflow: hidden; }
  .masthead-row .mast-cell { white-space: normal; font-size: 10px; letter-spacing: 0.04em; min-width: 0; }
  .masthead-row .mast-cell:last-child { display: none; }
}
.masthead-row .stamp {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
}
.masthead-row .stamp::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 4px rgba(102,87,217,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-5);
  min-height: var(--header-height);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 22px; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-paper);
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 6px;
  border: 2px solid rgba(255,255,255,0.55);
  border-bottom: none; border-right: none;
  border-top-left-radius: 4px;
}
.brand-tag {
  display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.primary-nav {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}
.primary-nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--surface); color: var(--ink); text-decoration: none; }
.primary-nav a.is-active { background: var(--ink); color: #fff; }

.header-utility { display: flex; align-items: center; gap: var(--space-3); }
.listen-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  border: 1px solid var(--ink);
}
.listen-pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217,79,138,0.25);
}
.listen-pill:hover { background: var(--primary); border-color: var(--primary); text-decoration: none; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface);
  position: relative;
}
.hamburger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 150ms ease, top 200ms ease;
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 29px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 70; padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow-y: auto;
  box-shadow: -16px 0 48px rgba(36,32,61,0.18);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 600; }
.drawer-scrim {
  position: fixed; inset: 0; width: 100%; max-width: 100vw; background: rgba(36,32,61,0.4);
  z-index: 65; opacity: 0; pointer-events: none; transition: opacity 200ms ease;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer { max-width: min(320px, 92vw); }

/* Chapter pill rail (mobile) — sits under masthead */
.chapter-pill-rail {
  display: none;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  padding: 10px var(--space-4);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  /* Isolate horizontal scroll so pill children never expand body scrollWidth */
  contain: inline-size;
}
.chapter-pill-rail::-webkit-scrollbar { display: none; }
.chapter-pill-rail a {
  flex: 0 0 auto;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-soft);
  font-size: 13px; font-weight: 600; margin-right: 8px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.chapter-pill-rail a:hover { background: var(--surface); border-color: var(--border); text-decoration: none; }
.chapter-pill-rail a.is-active { background: var(--ink); color: #fff; }

/* ── Editorial Index Rail (desktop sticky left) ─── */
.home-shell {
  display: grid;
  grid-template-columns: var(--rail-width) minmax(0, 1fr);
  gap: var(--space-6);
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
}
@media (max-width: 1023px) {
  .home-shell { grid-template-columns: 1fr; padding: var(--space-5) var(--space-4); }
}
.editorial-index-rail {
  position: sticky; top: calc(var(--header-height) + 16px);
  align-self: start;
  height: max-content;
  border-left: 1px solid var(--border);
  padding-left: var(--space-4);
  min-width: 0;
}
@media (max-width: 1023px) {
  .editorial-index-rail { display: none; }
  .home-shell { grid-template-columns: minmax(0, 1fr); }
  .home-content, .page-shell, .page-shell.with-rail { min-width: 0; max-width: 100%; }
}
.editorial-index-rail h4 {
  font-size: 11px; letter-spacing: 0.16em; color: var(--muted); margin-bottom: var(--space-3);
}
.editorial-index-rail ol { list-style: none; padding: 0; margin: 0; counter-reset: ch; }
.editorial-index-rail li {
  counter-increment: ch;
  margin-bottom: 4px;
}
.editorial-index-rail a {
  display: grid; grid-template-columns: 24px 1fr; align-items: baseline;
  padding: 6px 0;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  border-bottom: 1px dashed transparent;
}
.editorial-index-rail a::before {
  content: counter(ch, decimal-leading-zero);
  font-variant-numeric: tabular-nums;
  color: var(--primary); font-weight: 700; margin-right: 4px;
}
.editorial-index-rail a:hover { color: var(--ink); text-decoration: none; border-bottom-color: var(--border); }
.editorial-index-rail a.is-active { color: var(--ink); }
.editorial-index-rail a.is-active::before { color: var(--accent); }

/* ── Hero (utility-scoreboard) ──────────────────── */
.utility-scoreboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-paper);
}
.utility-scoreboard .us-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
}
@media (max-width: 880px) { .utility-scoreboard .us-grid { grid-template-columns: 1fr; } }
.utility-scoreboard .us-head {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.utility-scoreboard .us-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: var(--space-4);
}
.utility-scoreboard .us-meta span { background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; font-weight: 700; }
.utility-scoreboard h1 { margin-bottom: var(--space-4); }
.utility-scoreboard .us-lede {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 56ch;
}
.utility-scoreboard .us-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-5); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 120ms ease, background 200ms ease, border-color 200ms ease;
}
.btn-primary {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn-primary:hover { background: var(--primary); border-color: var(--primary); text-decoration: none; }
.btn-ghost {
  background: var(--surface); color: var(--ink); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink); text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #B53B72; border-color: #B53B72; text-decoration: none; }
.btn-affiliate {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-color: var(--primary);
  position: relative;
}
.btn-affiliate::after {
  content: 'AD'; position: absolute; top: -8px; right: -8px;
  background: #fff; color: var(--ink); font-size: 9px; font-weight: 700;
  padding: 2px 5px; border-radius: 4px; border: 1px solid var(--border);
}
.btn-affiliate:hover { transform: translateY(-1px); text-decoration: none; }

.utility-scoreboard .us-ticker {
  border-top: 1px solid var(--border);
  border-left: 0;
  background: var(--ink);
  color: #fff;
  padding: var(--space-5) var(--space-5);
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 880px) {
  .utility-scoreboard .us-ticker { border-top: 1px solid var(--border); border-left: 0; padding: var(--space-5); }
}
.utility-scoreboard .us-ticker h3 {
  margin: 0; color: #fff; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.utility-scoreboard .us-ticker h3::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(217,79,138,0.3);
}
.utility-scoreboard .ticker-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}
.utility-scoreboard .ticker-row:first-of-type { border-top: 0; }
.utility-scoreboard .ticker-row .pill {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); padding: 3px 8px; border-radius: 4px;
}
.utility-scoreboard .ticker-row .pill.live { background: var(--accent); }
.utility-scoreboard .ticker-row strong { font-weight: 700; }
.utility-scoreboard .ticker-row .meta { color: rgba(255,255,255,0.6); font-size: 11px; }

/* Bracket fragment (small SVG diagram inside the scoreboard right column or below it) */
.bracket-fragment {
  border-top: 1px solid var(--border);
  background: var(--surface-3);
  padding: var(--space-5) var(--space-6);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5);
  align-items: center;
}
@media (max-width: 720px) { .bracket-fragment { grid-template-columns: 1fr; padding: var(--space-5); } }
.bracket-fragment .bf-text { font-size: 14px; color: var(--ink-soft); }
.bracket-fragment h4 { color: var(--ink); margin-bottom: 6px; }
.bracket-fragment .bf-cta { margin-top: 8px; }

/* ── Section spacing ────────────────────────────── */
.section { padding: var(--space-8) 0; border-top: 1px solid var(--rule); }
.section:first-of-type { border-top: 0; }
.section .section-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: var(--space-4); margin-bottom: var(--space-6); min-width: 0; max-width: 100%; }
.section .section-head .eyebrow { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.section .section-head h2 { margin: 0; }
.section .section-head p { margin: 6px 0 0; color: var(--muted); max-width: 56ch; }
.section .section-head .read-rail { font-size: 12px; color: var(--muted); white-space: nowrap; min-width: 0; max-width: 100%; }
@media (max-width: 899px) {
  .section .section-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .section .section-head .read-rail {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    justify-self: start;
    max-width: 100%;
  }
}

.full-width { width: 100%; }

/* ── Bracket geometry spotlight ──────────────────── */
.bracket-spotlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-paper);
}
.bracket-spotlight .bs-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-6); align-items: start;
}
@media (max-width: 900px) { .bracket-spotlight .bs-grid { grid-template-columns: 1fr; } }
.bracket-spotlight svg { width: 100%; height: auto; display: block; }
.bracket-spotlight .bs-side h4 { color: var(--ink); margin-bottom: 8px; }
.bracket-spotlight .bs-side ol { padding-left: 18px; margin: 0; color: var(--ink-soft); font-size: 15px; }
.bracket-spotlight .bs-side li { margin-bottom: 8px; }
.bracket-spotlight .bs-side .stage-pill { display: inline-block; padding: 2px 8px; border-radius: 4px; background: var(--surface-2); color: var(--primary); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 6px; font-weight: 700; }

/* ── Floating panel trio (teams) ─────────────────── */
.dossier-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-5); }
@media (max-width: 880px) { .dossier-trio { grid-template-columns: 1fr; } }
.dossier-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.dossier-card.tall { padding-top: var(--space-6); }
.dossier-card .dc-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--space-3); }
.dossier-card .dc-meta .tag { background: var(--surface-2); padding: 3px 8px; border-radius: 4px; font-weight: 700; }
.dossier-card .dc-meta .region { color: var(--accent); }
.dossier-card h3 { margin-bottom: 6px; }
.dossier-card .dc-record { font-size: 13px; color: var(--muted); margin-bottom: var(--space-4); }
.dossier-card .dc-image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.dossier-card .dc-image img { width: 100%; height: 100%; object-fit: cover; }
.dossier-card .dc-roster { list-style: none; padding: 0; margin: 0 0 var(--space-4); display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; font-size: 13px; }
.dossier-card .dc-roster li { display: flex; justify-content: space-between; border-bottom: 1px dotted var(--border); padding: 4px 0; }
.dossier-card .dc-roster li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.dossier-card .dc-foot { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.dossier-card .dc-evidence {
  position: absolute; inset: auto 0 0 0;
  background: var(--ink); color: #fff;
  font-size: 11px; letter-spacing: 0.08em;
  padding: 8px var(--space-5);
  transform: translateY(100%);
  transition: transform 220ms ease;
}
.dossier-card:hover .dc-evidence,
.dossier-card:focus-within .dc-evidence { transform: translateY(0); }
@media (hover: none) {
  .dossier-card .dc-evidence { transform: translateY(0); position: relative; inset: auto; margin-top: var(--space-4); }
}

/* ── Player role matrix ──────────────────────────── */
.role-matrix { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-5); align-items: start; }
@media (max-width: 900px) { .role-matrix { grid-template-columns: 1fr; } }
.role-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-paper);
}
.role-feature .rf-image { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.role-feature .rf-image img { width: 100%; height: 100%; object-fit: cover; }
.role-feature .rf-body { padding: var(--space-5); }
.role-feature .rf-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--space-3); font-weight: 700; }
.role-feature .rf-meta .role-tag { background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 4px; }
.role-feature .rf-meta .verify { background: var(--surface-2); padding: 4px 10px; border-radius: 4px; color: var(--primary); }
.role-feature h3 { margin-bottom: var(--space-3); }
.role-feature .rf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--border); }
.role-feature .rf-stats div { font-size: 13px; color: var(--muted); }
.role-feature .rf-stats strong { display: block; font-size: 22px; color: var(--ink); font-variant-numeric: tabular-nums; }

.role-cells { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.role-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: grid; grid-template-columns: 64px 1fr; gap: var(--space-3);
}
.role-cell .rc-image {
  width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-2);
}
.role-cell .rc-image img { width: 100%; height: 100%; object-fit: cover; }
.role-cell .rc-meta { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.role-cell h4 { font-size: 14px; margin-bottom: 4px; text-transform: none; letter-spacing: 0; color: var(--ink); }
.role-cell p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── Magazine spread (patch context) ─────────────── */
.magazine-spread {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1px 1fr;
  box-shadow: var(--shadow-paper);
}
@media (max-width: 900px) { .magazine-spread { grid-template-columns: 1fr; } }
.magazine-spread .ms-col { padding: var(--space-6); }
.magazine-spread .ms-rule { background: var(--border); }
.magazine-spread .ms-cover { background: var(--surface-3); aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-4); }
.magazine-spread .ms-cover img { width: 100%; height: 100%; object-fit: cover; }
.magazine-spread .ms-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.magazine-spread h3 { margin-bottom: var(--space-4); }
.magazine-spread .patch-list { list-style: none; padding: 0; margin: 0; }
.magazine-spread .patch-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: var(--space-3);
  padding: var(--space-4) 0; border-top: 1px solid var(--border);
}
.magazine-spread .patch-list li:first-child { border-top: 0; }
.magazine-spread .patch-list .ver {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent); padding: 3px 8px;
  background: var(--surface-2); border-radius: 4px; align-self: start;
}
.magazine-spread .patch-list strong { display: block; margin-bottom: 4px; }
.magazine-spread .patch-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ── Tactical map callouts ───────────────────────── */
.tactical-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}
.tactical-cover {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.tactical-cover img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.tactical-cover .annotate {
  position: absolute; inset: 0;
}
.tactical-cover .annotate .pin {
  position: absolute;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff; background: rgba(102,87,217,0.85);
  color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.tactical-cover .annotate .pin.accent { background: var(--accent); border-color: #fff; }
.tactical-cover .annotate .pin-label {
  position: absolute; transform: translate(-50%, 8px);
  background: rgba(36,32,61,0.92); color: #fff; padding: 4px 10px; border-radius: 4px;
  font-size: 11px; letter-spacing: 0.06em; white-space: nowrap;
}
.tactical-foot { padding: var(--space-5) var(--space-6); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-4); }
@media (max-width: 720px) { .tactical-foot { grid-template-columns: 1fr; } }
.tactical-foot .tf-cell { font-size: 13px; color: var(--ink-soft); }
.tactical-foot .tf-cell h5 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin: 0 0 4px; font-weight: 700; }
.tactical-foot .tf-cell strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 14px; }

/* ── Ledger table (match preview) ────────────────── */
.ledger-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-paper); }
.ledger-table .lt-head { display: grid; grid-template-columns: 1fr 1fr; padding: var(--space-5) var(--space-6); border-bottom: 1px solid var(--border); background: var(--surface-2); }
.ledger-table .lt-head h4 { margin: 0; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.ledger-table .lt-head h4 + p { margin: 4px 0 0; color: var(--muted); font-size: 12px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.ledger-table .lt-row { display: grid; grid-template-columns: 1fr 1fr; padding: var(--space-4) var(--space-6); border-top: 1px solid var(--border); }
.ledger-table .lt-row:first-of-type { border-top: 0; }
.ledger-table .lt-row > div { padding-right: var(--space-5); font-size: 14px; }
.ledger-table .lt-row > div + div { border-left: 1px solid var(--border); padding-left: var(--space-5); }
.ledger-table .lt-row strong { display: block; color: var(--ink); margin-bottom: 2px; }
.ledger-table .lt-row .scenario { color: var(--accent); font-weight: 600; }
.ledger-table .lt-row .confirmed { color: var(--success); font-weight: 600; }

/* ── Streaming guide matrix ──────────────────────── */
.streaming-matrix { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-paper); }
.streaming-matrix table { width: 100%; border-collapse: collapse; }
.streaming-matrix thead th { background: var(--surface-2); text-align: left; padding: 12px var(--space-4); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.streaming-matrix tbody td { padding: 12px var(--space-4); border-top: 1px solid var(--border); font-size: 14px; vertical-align: top; }
.streaming-matrix tbody tr:hover { background: var(--surface-2); }
.streaming-matrix .pill-region { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; letter-spacing: 0.12em; background: var(--surface-2); color: var(--primary); font-weight: 700; text-transform: uppercase; }
.streaming-matrix .pill-yes { background: #DCEFE3; color: #1E5B3D; }
.streaming-matrix .pill-no { background: #F5E2E2; color: #8B3434; }
.streaming-matrix .pill-partial { background: #FFF1D6; color: #8A5A14; }
.streaming-matrix .badge { display: inline-block; padding: 2px 6px; border-radius: 3px; font-size: 11px; font-weight: 700; margin-right: 4px; }

/* ── Film strip (post-match) ─────────────────────── */
.film-strip {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-paper);
}
.film-strip::before, .film-strip::after {
  content: ''; position: absolute; left: 0; right: 0; height: 18px;
  background-image: linear-gradient(90deg, var(--ink) 0 18px, var(--accent) 18px 22px, var(--ink) 22px 40px);
}
.film-strip::before { top: 0; }
.film-strip::after { bottom: 0; }
.film-strip .fs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: 24px; margin-bottom: 24px; }
@media (max-width: 720px) { .film-strip .fs-grid { grid-template-columns: 1fr 1fr; } }
.film-strip .fs-cell { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: var(--space-4); }
.film-strip .fs-cell .round { display: inline-block; padding: 2px 8px; border-radius: 4px; background: var(--accent); color: #fff; font-size: 10px; letter-spacing: 0.14em; font-weight: 700; }
.film-strip .fs-cell h5 { color: #fff; margin: 8px 0 4px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.film-strip .fs-cell p { color: rgba(255,255,255,0.78); font-size: 13px; margin: 0 0 8px; }
.film-strip .fs-cell .meter { display: flex; gap: 2px; height: 6px; border-radius: 3px; overflow: hidden; background: rgba(255,255,255,0.08); }
.film-strip .fs-cell .meter i { display: block; background: var(--primary); }
.film-strip .fs-cell .meter i.alt { background: var(--accent); }
.film-strip .fs-foot { display: flex; gap: var(--space-4); align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.7); }
.film-strip .fs-foot a { color: #fff; text-decoration: underline; }

/* ── Evidence standards panel ────────────────────── */
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 880px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex; flex-direction: column;
}
.policy-card .pc-num { font-size: 11px; letter-spacing: 0.18em; color: var(--accent); font-weight: 700; }
.policy-card h4 { color: var(--ink); margin: 6px 0 8px; }
.policy-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.policy-card ul { list-style: none; padding: 0; margin: var(--space-3) 0 0; font-size: 13px; color: var(--ink-soft); }
.policy-card ul li { padding: 4px 0; border-top: 1px dotted var(--border); display: flex; justify-content: space-between; }
.policy-card ul li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }

/* ── Responsible play panel ─────────────────────── */
.responsible-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-5); align-items: start;
}
@media (max-width: 720px) { .responsible-panel { grid-template-columns: 1fr; } }
.responsible-panel .rp-mark {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary);
  font-family: 'Roboto', sans-serif; font-size: 22px;
}
.responsible-panel h3 { margin-bottom: var(--space-3); }
.responsible-panel p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.responsible-panel .rp-foot { margin-top: var(--space-4); display: flex; gap: var(--space-4); flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.responsible-panel .rp-foot a { color: var(--primary); font-weight: 600; }

/* ── FAQ desk ───────────────────────────────────── */
.faq-list { display: grid; grid-template-columns: 220px 1fr; gap: var(--space-6); }
@media (max-width: 880px) { .faq-list { grid-template-columns: 1fr; } }
.faq-list .faq-side { position: sticky; top: calc(var(--header-height) + 16px); align-self: start; border-right: 1px solid var(--border); padding-right: var(--space-4); }
.faq-list .faq-side h4 { font-size: 12px; letter-spacing: 0.16em; color: var(--muted); margin-bottom: var(--space-3); }
.faq-list .faq-side ul { list-style: none; padding: 0; margin: 0; }
.faq-list .faq-side li { padding: 6px 0; border-bottom: 1px dotted var(--border); font-size: 13px; }
.faq-list .faq-side li a { color: var(--ink-soft); font-weight: 600; }
.faq-list .faq-body details { border-top: 1px solid var(--border); padding: var(--space-4) 0; }
.faq-list .faq-body details:first-of-type { border-top: 0; padding-top: 0; }
.faq-list .faq-body summary {
  font-weight: 700; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  list-style: none; font-size: 17px;
}
.faq-list .faq-body summary::-webkit-details-marker { display: none; }
.faq-list .faq-body summary::after {
  content: '+'; font-size: 22px; color: var(--primary); font-weight: 400;
  width: 24px; text-align: center;
}
.faq-list .faq-body details[open] summary::after { content: '−'; }
.faq-list .faq-body summary .q-num {
  display: inline-block; width: 28px; font-size: 11px; letter-spacing: 0.14em;
  color: var(--primary); font-weight: 700; margin-right: 8px;
}
.faq-list .faq-body details p { margin: var(--space-3) 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; padding-left: 36px; }

/* ── Colophon ───────────────────────────────────── */
.colophon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-5); align-items: center;
}
@media (max-width: 720px) { .colophon { grid-template-columns: 1fr; } }
.colophon .co-mark { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.colophon .co-meta { font-size: 11px; letter-spacing: 0.16em; color: var(--accent); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; }
.colophon h3 { font-size: 19px; margin: 0 0 4px; }
.colophon p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.colophon .co-cta { white-space: nowrap; }

/* ── Money route CTA strip (mid-page affiliate) ── */
.cta-strip {
  background: linear-gradient(120deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-5); align-items: center;
}
@media (max-width: 720px) { .cta-strip { grid-template-columns: 1fr; } }
.cta-strip .cs-eyebrow { font-size: 11px; letter-spacing: 0.16em; color: var(--accent); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; }
.cta-strip h3 { margin: 0 0 6px; font-size: 22px; }
.cta-strip p { margin: 0; color: var(--ink-soft); font-size: 14px; max-width: 60ch; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  margin-top: var(--space-8);
  padding: var(--space-8) 0 var(--space-6);
}
.site-footer .ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--space-6); }
@media (max-width: 1023px) { .site-footer .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer .ft-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: #fff; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--space-3); font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer .ft-brand p { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 32ch; }
.site-footer .ft-foot {
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; font-size: 12px;
}
.site-footer .ft-foot a { color: rgba(255,255,255,0.55); }
.site-footer .ft-foot a:hover { color: #fff; }

/* ── Mobile sticky affiliate CTA bar ─────────────── */
.sticky-affiliate {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px var(--space-4);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: none;
  box-shadow: 0 -8px 24px rgba(36,32,61,0.12);
}
@media (max-width: 899px) {
  .sticky-affiliate.is-on { display: block; }
}
@media (min-width: 900px) {
  .sticky-affiliate { display: none !important; }
}
.sticky-affiliate .sa-row { max-width: var(--grid-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 8px; }
.sticky-affiliate .sa-meta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.sticky-affiliate .sa-meta strong { color: var(--accent); font-weight: 700; }
.sticky-affiliate .sa-cta {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  width: 100%; padding: 14px 18px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 700; font-size: 15px;
  border: 0;
  white-space: nowrap;
}
.sticky-affiliate .sa-cta:hover { text-decoration: none; filter: brightness(1.05); }
@media (max-width: 899px) {
  .sticky-affiliate.is-on ~ .site-footer, body:has(.sticky-affiliate.is-on) .site-footer { padding-bottom: 96px; }
  body:has(.sticky-affiliate.is-on) main { padding-bottom: 96px; }
}

/* ── Page-level article styles ───────────────────── */
.article-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
}
.article-hero .ah-image { aspect-ratio: 21/9; background: var(--surface-2); overflow: hidden; }
.article-hero .ah-image img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .ah-body { padding: var(--space-6); }
.article-hero .ah-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.article-hero h1 { margin: 0 0 var(--space-3); }
.article-hero .ah-meta { display: flex; gap: var(--space-3); flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.article-hero .ah-meta strong { color: var(--ink); }

.lede p:first-of-type::first-letter {
  font-size: 56px; font-weight: 700; line-height: 1; float: left;
  padding-right: 8px; color: var(--primary);
}

.prose { max-width: 70ch; }
.prose p, .prose ul, .prose ol { font-size: 17px; line-height: 1.75; }
.prose h2 { margin-top: var(--space-7); padding-top: var(--space-4); border-top: 1px solid var(--border); }
.prose h3 { margin-top: var(--space-5); }
.prose blockquote { border-left: 4px solid var(--accent); padding: var(--space-3) var(--space-4); margin: var(--space-5) 0; background: var(--surface-2); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose figure { margin: var(--space-5) 0; }
.prose figure img { border-radius: var(--radius-md); border: 1px solid var(--border); }
.prose figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; padding-left: 8px; border-left: 2px solid var(--accent); }

.inline-cta {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-4); align-items: center;
  margin: var(--space-6) 0;
}
@media (max-width: 600px) { .inline-cta { grid-template-columns: 1fr; } }
.inline-cta .ic-eyebrow { font-size: 11px; letter-spacing: 0.16em; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.inline-cta h4 { margin: 0 0 4px; color: var(--ink); text-transform: none; letter-spacing: 0; font-size: 17px; }
.inline-cta p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.related-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-5); }
@media (max-width: 720px) { .related-posts { grid-template-columns: 1fr; } }
.related-posts .rp-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-4);
  display: flex; flex-direction: column; gap: 6px;
}
.related-posts .rp-card .rp-meta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.related-posts .rp-card h4 { margin: 0; font-size: 16px; text-transform: none; letter-spacing: 0; color: var(--ink); }
.related-posts .rp-card p { margin: 0; font-size: 13px; color: var(--muted); }

/* ── Breadcrumb ─────────────────────────────────── */
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; color: var(--muted); margin-bottom: var(--space-4); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

/* ── Responsive helpers ─────────────────────────── */
@media (max-width: 880px) {
  .primary-nav, .header-utility .listen-pill { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .header-row { grid-template-columns: minmax(0, 1fr) auto; }
  .header-utility { gap: 0; }
  .chapter-pill-rail { display: flex; }
}
@media (max-width: 600px) {
  .utility-scoreboard .us-head { padding: var(--space-5); }
  .utility-scoreboard .us-ticker { padding: var(--space-4); }
  .home-shell { padding-top: var(--space-4); }
}
@media (min-width: 881px) {
  .chapter-pill-rail { display: none; }
}

/* ── Section spacing for desktop non-homepage ── */
.page-shell {
  max-width: var(--grid-max); margin: 0 auto; padding: var(--space-6) var(--space-5);
}
.page-shell.with-rail { display: grid; grid-template-columns: var(--rail-width) minmax(0, 1fr); gap: var(--space-6); }
@media (max-width: 1023px) { .page-shell.with-rail { grid-template-columns: 1fr; } }

.reduced-motion * { animation: none !important; transition: none !important; }

@media (max-width: 899px) {
  .utility-scoreboard .us-head { padding: 24px 16px; }
  .utility-scoreboard h1 { font-size: 32px !important; line-height: 1.1 !important; }
  .utility-scoreboard .us-lede { font-size: 16px !important; }
  .article-hero .ah-image { aspect-ratio: 16/9; max-height: 420px; }
  section[id] { scroll-margin-top: 88px; }
}

/* Skip link — keep off-flow so it cannot inflate document width */
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transform: translateY(-120%);
  transition: transform 160ms ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Mobile overflow hard stops */
html, body { max-width: 100%; overflow-x: clip; }
body { width: 100%; }
.site-header, .chapter-pill-rail, .masthead, .home-shell, .home-content, .page-shell, .utility-scoreboard, .section, .section-head, .container, .us-grid, .bs-grid, .dossier-trio, .role-matrix, .magazine-spread, .ledger-table, .streaming-matrix, .film-strip, .policy-grid, .faq-list, .colophon, .cta-strip, .related-posts, .inline-cta, .bracket-spotlight, .tactical-wrap, .article-hero {
  min-width: 0;
  max-width: 100%;
}
img, svg, video, table { max-width: 100%; }
.streaming-matrix { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.streaming-matrix table { min-width: 0; width: 100%; }
.ledger-table .lt-head, .ledger-table .lt-row { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .ledger-table .lt-head, .ledger-table .lt-row { grid-template-columns: 1fr 1fr; }
}
.ledger-table .lt-row > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }
@media (min-width: 720px) {
  .ledger-table .lt-row > div + div { border-left: 1px solid var(--border); padding-left: var(--space-5); border-top: 0; margin-top: 0; padding-top: 0; }
}
.magazine-spread { grid-template-columns: 1fr; }
@media (min-width: 901px) {
  .magazine-spread { grid-template-columns: 1fr 1px 1fr; }
}
.magazine-spread .ms-rule { display: none; }
@media (min-width: 901px) {
  .magazine-spread .ms-rule { display: block; }
}
.bracket-spotlight svg, .bracket-fragment svg { width: 100%; height: auto; }
.film-strip .fs-grid { grid-template-columns: 1fr 1fr; }
@media (min-width: 721px) {
  .film-strip .fs-grid { grid-template-columns: repeat(4, 1fr); }
}
.faq-list { grid-template-columns: 1fr; }
@media (min-width: 881px) {
  .faq-list { grid-template-columns: 220px 1fr; }
}
.colophon { grid-template-columns: 1fr; }
@media (min-width: 721px) {
  .colophon { grid-template-columns: auto 1fr auto; }
}
.btn, .sa-cta, .listen-pill { white-space: nowrap; }
.masthead-row { flex-wrap: wrap; }

@media (max-width: 899px) {
  .role-matrix { grid-template-columns: minmax(0,1fr) !important; }
  .role-feature, .role-cells, .rf-image, .rf-body { max-width: 100% !important; width: 100% !important; min-width: 0 !important; }
  .role-cells { grid-template-columns: 1fr !important; }
  .rf-stats { grid-template-columns: 1fr 1fr 1fr; }
  .dossier-trio { grid-template-columns: 1fr !important; }
  .us-grid { grid-template-columns: 1fr !important; }
  .bs-grid { grid-template-columns: 1fr !important; }
  .policy-grid { grid-template-columns: 1fr !important; }
  .streaming-matrix table { min-width: 0 !important; width: 100%; table-layout: fixed; }
  .streaming-matrix th, .streaming-matrix td { white-space: normal; }
  .utility-scoreboard, .bracket-spotlight, .magazine-spread, .tactical-wrap, .ledger-table, .film-strip, .cta-strip, .colophon { width: 100%; max-width: 100%; }
}
