/* ===========================================================================
   UNDER REVIEW — the replay booth · stylesheet v8
   Published as /assets/ur-8.css. /assets/* is cached immutable: never edit
   this file after it ships. Copy it to ur-9.css and bump STYLESHEET in
   scripts/site-chrome.mjs.

   One stylesheet. No build step. No JavaScript required to read anything.

   The design idea in one line: this site is a replay booth, and the site's
   own vocabulary is already the sport's.

       claim status        what the booth says
       verified       →    CONFIRMED
       held           →    UNDER REVIEW
       retracted      →    OVERTURNED

   So the status chip is the core component, not an ornament. Everything else
   — the near-black ground, the flag yellow, the condensed caps — exists to
   make that chip read at arm's length on a phone.

   Mobile first, and not as a slogan: every rule below is written for a
   360px-wide screen held in one hand, and widened at 720px and 1040px.

   Dark only, on purpose. A booth is a dark room with a lit monitor. A light
   variant of this would be a different newsroom.
   =========================================================================== */


@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap;
  src: url(/assets/fonts/barlow-condensed-600.woff2) format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 700 800; font-display: swap;
  src: url(/assets/fonts/barlow-condensed-800.woff2) format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: italic; font-weight: 700 800; font-display: swap;
  src: url(/assets/fonts/barlow-condensed-800-italic.woff2) format("woff2"); }

:root {
  color-scheme: dark;

  /* The booth. Cool and slightly blue so it reads as a screen, not as paper. */
  --field:      #0a0b0d;
  --field-2:    #101218;
  --field-3:    #171a21;
  --field-4:    #1f2430;
  --line:       #2a2f3a;
  --line-soft:  #1c202a;

  --ink:        #f5f6f8;
  --ink-2:      #a9b0bd;
  --ink-3:      #6f7684;

  /* One accent. The flag on the field. */
  --flag:       #ffd200;
  --flag-ink:   #0a0b0d;
  --flag-dim:   #8e7400;

  /* The three rulings. Yellow is the pending state, which is exactly why it
     is also the brand colour: this newsroom's default posture is "under
     review", and confirmation is the thing that has to be earned. */
  --confirmed:  #3ad07f;
  --review:     var(--flag);
  --overturned: #ff5a4d;

  /* One self-hosted face, two weights, ~15KB each, font-display: swap, and
     the heavy weights preloaded. The system stack below it is what renders
     until it lands, so a slow phone still gets condensed caps immediately. */
  --display: "Barlow Condensed", "Oswald", "Archivo Narrow", "Roboto Condensed", "Barlow Condensed",
             "Arial Narrow", Haettenschweiler, Impact, system-ui, sans-serif;
  --sans:    ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter,
             Roboto, Helvetica, Arial, sans-serif;
  --mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
             "Liberation Mono", monospace;

  --wrap: 1080px;
  --gutter: 18px;
  --tap: 44px;              /* nothing interactive is smaller than this */
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--field);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* The field texture: a faint yard-line wash, fixed so it does not scroll
     like wallpaper. Two stops, no image, no request. */
  background-image:
    radial-gradient(1200px 500px at 50% -10%, #14171e 0%, transparent 70%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left), env(safe-area-inset-right));
}

a { color: var(--flag); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--flag);
  outline-offset: 2px;
  border-radius: var(--radius);
}

img, svg, video { max-width: 100%; height: auto; display: block; }

.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; }

::selection { background: var(--flag); color: var(--flag-ink); }

/* ---------------------------------------------------------------- type --- */

h1, h2, h3, h4, .wordmark, .hed-xl, .hed-l, .hed-m, .hed-s, .stat-n {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;             /* variable system faces honour this */
  letter-spacing: -.005em;
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}

.hed-xl { font-size: clamp(30px, 8.4vw, 58px); text-transform: uppercase; letter-spacing: .002em; }
.hed-l  { font-size: clamp(25px, 6.4vw, 38px); }
.hed-m  { font-size: clamp(20px, 4.8vw, 25px); }
.hed-s  { font-size: clamp(17px, 4vw, 20px); }

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flag);
  margin: 0 0 10px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 14px; height: 2px;
  background: var(--flag);
  vertical-align: middle;
  margin-right: 8px;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin: 0 0 16px;
}

.dek   { color: var(--ink-2); font-size: 16.5px; line-height: 1.6; margin: 0 0 18px; }
.lede  { font-size: 19px; line-height: 1.6; color: var(--ink); margin: 0 0 20px; }
.updated {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin: 8px 0 26px;
}

/* ------------------------------------------------------- status chips --- */
/* The load-bearing component. Readable at a glance, readable in a crop, and
   legible to a screen reader as words rather than as a colour. */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  padding: 7px 10px 6px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  white-space: nowrap;
}
.chip::before {
  content: "";
  width: 7px; height: 7px;
  background: currentColor;
  flex: none;
}
.chip.confirmed  { color: var(--confirmed);  background: color-mix(in srgb, var(--confirmed) 11%, transparent); }
.chip.review     { color: var(--review);     background: color-mix(in srgb, var(--review) 11%, transparent); }
.chip.overturned { color: var(--overturned); background: color-mix(in srgb, var(--overturned) 11%, transparent); }
.chip.neutral    { color: var(--ink-3);      background: transparent; }

/* The solid variant, for when the chip is the loudest thing on the card. */
.chip.solid { border-color: transparent; }
.chip.solid::before { display: none; }
.chip.solid.confirmed  { background: var(--confirmed);  color: var(--field); }
.chip.solid.review     { background: var(--review);     color: var(--flag-ink); }
.chip.solid.overturned { background: var(--overturned); color: var(--field); }

/* Legacy names kept so the ledger markup does not need two vocabularies. */
.tag, .tag.sourced, .tag.live, .tag.corrected {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 8px; white-space: nowrap;
}
.tag.sourced  { color: var(--confirmed);  border-color: color-mix(in srgb, var(--confirmed) 45%, transparent); }
.tag.live     { color: var(--overturned); border-color: color-mix(in srgb, var(--overturned) 45%, transparent); }
.tag.corrected{ color: var(--flag);       border-color: var(--flag-dim); }

/* --------------------------------------------------------------- main --- */

main { padding-block: 26px 44px; }

section + section { margin-top: 38px; }

/* ---------------------------------------------------------- the bug ------ */
/* A broadcast score bug: the strip that tells you the state of play before
   you have read a word. Used for the site's own status. */

.bug {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-left: 4px solid var(--flag);
  background: var(--field-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.bug > div {
  padding: 13px 15px;
  border-top: 1px solid var(--line-soft);
}
.bug > div:first-child { border-top: 0; }
.bug dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 5px;
}
.bug dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;
  font-size: 21px;
  line-height: 1.1;
  text-transform: uppercase;
}
.bug dd small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-2);
  margin-top: 6px;
}

/* --------------------------------------------------------------- notes --- */

.note {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  margin: 0 0 16px;
}
.note h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 8px;
}
.note p:last-child { margin-bottom: 0; }
.note.live   { border-left-color: var(--flag); }
.note.live h3 { color: var(--flag); }
.note.flag   { border-left-color: var(--overturned); }
.note.flag h3 { color: var(--overturned); }
.note.good   { border-left-color: var(--confirmed); }
.note.good h3 { color: var(--confirmed); }

/* ---------------------------------------------------------- rules grid --- */

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 26px;
}
.rules-grid > div {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.rules-grid h3 {
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.rules-grid ul { margin: 0; padding-left: 0; list-style: none; }
.rules-grid li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.rules-grid li:last-child { margin-bottom: 0; }
.rules-grid li::before {
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  font-size: 13px;
}
.rules-grid .do  { border-top-color: var(--confirmed); }
.rules-grid .do h3 { color: var(--confirmed); }
.rules-grid .do li::before { content: "✓"; color: var(--confirmed); }
.rules-grid .dont { border-top-color: var(--overturned); }
.rules-grid .dont h3 { color: var(--overturned); }
.rules-grid .dont li::before { content: "✕"; color: var(--overturned); }

/* -------------------------------------------------------------- roster --- */
/* The outlet roster, laid out like a team sheet. */

.roster { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 18px 0 0; }
.roster article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  background: var(--field-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
}
.roster h3 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
}
.roster p {
  flex: 1 1 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ------------------------------------------------------------ pipeline --- */
/* How a story gets made — a numbered drive chart rather than a table, so it
   survives a 360px screen without horizontal scroll. */

.pipeline { list-style: none; margin: 18px 0 0; padding: 0; counter-reset: step; }
.pipeline li {
  counter-increment: step;
  position: relative;
  padding: 0 0 20px 46px;
  border-left: 2px solid var(--line);
  margin-left: 14px;
}
.pipeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.pipeline li::before {
  content: counter(step);
  position: absolute;
  left: -15px; top: -2px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--field-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.pipeline li.gate { border-left-color: var(--flag); }
.pipeline li.gate::before {
  background: var(--flag);
  border-color: var(--flag);
  color: var(--flag-ink);
  font-weight: 700;
}
.pipeline h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 3px 0 5px;
}
.pipeline li.gate h3 { color: var(--flag); }
.pipeline p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.pipeline .by {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* --------------------------------------------------------------- prose --- */

.prose { max-width: 68ch; }
.prose h1 { font-size: clamp(28px, 7.6vw, 46px); text-transform: uppercase; margin: 0 0 6px; }
.prose h2 {
  font-size: clamp(21px, 5.2vw, 27px);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 38px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.prose h3 { font-size: 18px; text-transform: uppercase; margin: 26px 0 8px; }
.prose p  { margin: 0 0 17px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 20px; }
.prose li { margin-bottom: 9px; line-height: 1.6; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose em { color: var(--ink); }
.prose blockquote {
  margin: 20px 0;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--flag);
  color: var(--ink);
  font-size: 18px;
}

.article-body { max-width: 68ch; }
.article-body p { margin: 0 0 18px; font-size: 17.5px; line-height: 1.68; }
.article-body > p:first-of-type { font-size: 19px; color: var(--ink); }

.byline {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .03em;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
  margin: 20px 0 26px;
}
.byline b { color: var(--flag); font-weight: 700; }

/* -------------------------------------------------------------- ledger --- */
/* The reason the site exists. Each factual sentence, the ruling on it, and
   the words it came from — as a stack of cards, because on a phone a table
   of this would be unreadable. */

/* Closed by default. The ledger is the promise, not the product: a reader who
   wants the receipts is one click from all of them, and a reader who does not
   gets the story without four screens of near-identical evidence under it.
   <details> and not JavaScript, so it works with the script blocked and opens
   for print and for find-in-page. */
.ledger { margin-top: 44px; border-top: 4px solid var(--flag); padding-top: 18px; }

.ledger > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding: 4px 0 2px;
}
.ledger > summary::-webkit-details-marker { display: none; }
.ledger > summary::after {
  content: 'Show';
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--flag);
  border: 1px solid var(--flag-dim);
  border-radius: var(--radius);
  padding: 3px 9px;
  margin-left: auto;
}
.ledger[open] > summary::after { content: 'Hide'; }
.ledger > summary:hover::after,
.ledger > summary:focus-visible::after { background: color-mix(in srgb, var(--flag) 14%, transparent); }
.ledger-hint { color: var(--ink-3); font-size: 12.5px; }
.ledger[open] > .dek { margin-top: 14px; }

.claim {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 0 14px;
  overflow: hidden;
}
.claim-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: var(--field-3);
  border-bottom: 1px solid var(--line);
}
.cid {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.claim-body { padding: 14px; }
.claim-body > h3 { margin-top: 0; }
.claim-body > a { font-family: var(--display); font-stretch: 85%; }

.said {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  border-left: 3px solid var(--flag);
  padding-left: 13px;
}

.src {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  margin-top: 12px;
}
.src:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.srcline {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.65;
  letter-spacing: .02em;
  color: var(--ink-3);
  word-break: break-word;
}
.srcline b { color: var(--ink-2); }
.srcline a { color: var(--flag); word-break: break-all; }

/* The verbatim span. Monospaced and boxed because it is evidence, not prose:
   it is quoted exactly, and it must look different from anything we wrote. */
.excerpt {
  margin-top: 8px;
  padding: 11px 13px;
  background: var(--field);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--confirmed);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------- article cards --- */

.stories { display: grid; grid-template-columns: 1fr; gap: 14px; }
.story {
  display: block;
  background: var(--field-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: inherit;
  text-decoration: none;
}
.story:hover { border-color: var(--flag-dim); text-decoration: none; }
.story h3 { font-size: clamp(19px, 4.6vw, 23px); text-transform: uppercase; margin: 10px 0 7px; }
.story p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.story .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
}

/* -------------------------------------------------------------- people --- */

.people { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
.people article {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(115deg, #14171e 0 14px, #171b23 14px 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  display: grid;
  place-items: center;
}
.portrait::after {
  content: "NO PORTRAIT RENDERED";
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-3);
}

/* A card that has a portrait says so with the portrait, not with a placeholder
   claiming there isn't one. Taller than 4:3 because these are half-body
   portraits: cropping a standing figure to landscape cuts the face off. */
.portrait.has-photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--field-2); }
.portrait.has-photo::after { content: none; }
.portrait.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.stamp {
  position: absolute;
  left: 8px; bottom: 8px;
  background: var(--flag);
  color: var(--flag-ink);
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius);
}

/* -------------------------------------------------------------- tables --- */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 16px 0 10px;
}
table.ltn { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14.5px; }
table.ltn th, table.ltn td {
  text-align: left;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
table.ltn thead th {
  background: var(--field-3);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
table.ltn tbody tr:last-child td { border-bottom: 0; }
table.ltn td { color: var(--ink-2); }
table.ltn .num { font-family: var(--mono); font-size: 13px; white-space: nowrap; color: var(--ink-3); }

/* -------------------------------------------------------------- signup --- */

.capture {
  background: var(--field-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--flag);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.capture h2 { font-size: clamp(23px, 6vw, 32px); text-transform: uppercase; margin: 0 0 8px; }
.capture p { color: var(--ink-2); font-size: 15.5px; margin: 0 0 18px; }
.capture form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.capture input[type="email"] {
  min-height: var(--tap);
  width: 100%;
  padding: 11px 13px;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-size: 16px;            /* 16px or iOS zooms the page on focus */
}
.capture input::placeholder { color: var(--ink-3); }
.capture button {
  min-height: var(--tap);
  padding: 12px 20px;
  background: var(--flag);
  color: var(--flag-ink);
  border: 0;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.capture button:hover { background: #ffdd3c; }

/* ------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 10px 16px;
  border: 1px solid var(--flag);
  border-radius: var(--radius);
  color: var(--flag);
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 85%;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn:hover { background: var(--flag); color: var(--flag-ink); text-decoration: none; }
.btn.solid { background: var(--flag); color: var(--flag-ink); }
.btn.solid:hover { background: #ffdd3c; }
.btn.quiet { border-color: var(--line); color: var(--ink-2); }
.btn.quiet:hover { background: var(--field-3); color: var(--ink); }

/* ===========================================================================
   720px — the tablet / large-phone-landscape step
   =========================================================================== */

@media (min-width: 720px) {
  :root { --gutter: 28px; }
  body { font-size: 17.5px; }

  .disclosure .wrap { flex-direction: row; flex-wrap: wrap; gap: 6px 26px; }

  .bug { grid-template-columns: repeat(3, 1fr); }
  .bug > div { border-top: 0; border-left: 1px solid var(--line-soft); }
  .bug > div:first-child { border-left: 0; }

  .rules-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .people     { grid-template-columns: 1fr 1fr; }
  .stories    { grid-template-columns: 1fr 1fr; }
  .roster     { grid-template-columns: 1fr 1fr; }
  .foot-grid  { grid-template-columns: repeat(3, 1fr); gap: 30px; }

  .capture { padding: 30px 28px; }
  .capture form { grid-template-columns: 1fr auto; }

  .claim-body { padding: 16px 18px; }
  main { padding-block: 34px 56px; }
}

/* ===========================================================================
   1040px — the desk step. Two columns, and the rail appears.
   =========================================================================== */

@media (min-width: 1040px) {
  .article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 46px;
    align-items: start;
  }
  aside.rail { position: sticky; top: 76px; }
  aside.rail section + section { margin-top: 26px; }

  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .stories { grid-template-columns: repeat(3, 1fr); }
}

/* Print: the ledger is the point, so make it survive paper. */
@media print {
  nav.primary, .capture, .disclosure, footer.site { display: none; }
  body { background: #fff; color: #000; }
  .claim, .note, .excerpt { border-color: #999; background: #fff; }
  .excerpt, .said { color: #000; }
  a { color: #000; }
}

/* ============================================================ THE CALLS --- */
.calls-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 18px; }
.calls-head .week { font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--flag); font-size: 14px; }

.analysis-label {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--flag-ink); background: var(--flag);
  padding: 3px 7px; border-radius: var(--radius);
}

.calls { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 14px 0 34px; }

.call {
  background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 10px; min-width: 0;
}
.call-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }

.verdict {
  font-family: var(--display); font-weight: 800; font-stretch: 85%; text-transform: uppercase;
  letter-spacing: .08em; font-size: 15px; line-height: 1; padding: 7px 11px 6px;
  border-radius: var(--radius); color: var(--field);
}
.verdict.start { background: var(--confirmed); }
.verdict.sit   { background: var(--overturned); }
.verdict.add   { background: var(--ink); }
.verdict.drop  { background: var(--ink-3); }

.call h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(19px, 4.8vw, 23px);
  line-height: 1.12; margin: 0; overflow-wrap: anywhere; }
.call .who { font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }
.call .who b { color: var(--ink-2); font-weight: 600; }
.call .take { margin: 0; color: var(--ink); font-size: 16px; line-height: 1.55; }

.conf { display: inline-flex; gap: 3px; vertical-align: middle; margin-left: 4px; }
.conf i { width: 8px; height: 8px; border: 1px solid var(--flag); display: inline-block; }
.conf i.on { background: var(--flag); }

.result { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); }

.call details { border-top: 1px solid var(--line-soft); padding-top: 8px; }
.call summary { cursor: pointer; font-family: var(--mono); font-size: 12px; color: var(--ink-3);
  letter-spacing: .06em; text-transform: uppercase; min-height: 44px; display: flex; align-items: center; }
.call summary:focus-visible { outline: 2px solid var(--flag); outline-offset: 2px; }
.evidence { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 4px; }
.evidence li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px;
  border-bottom: 1px dotted var(--line-soft); padding: 3px 0; }
.evidence li span:first-child { color: var(--ink-2); }
.evidence li span:last-child { font-family: var(--mono); color: var(--ink); white-space: nowrap; }
.evidence .src { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 6px; border: 0; padding: 0; }

.split {
  border: 1px solid var(--flag-dim); border-left: 4px solid var(--flag);
  background: color-mix(in srgb, var(--flag) 6%, transparent);
  padding: 14px 16px; border-radius: var(--radius); margin: 14px 0 6px;
}
.split h3 { font-family: var(--display); text-transform: uppercase; margin: 0 0 6px; color: var(--flag); font-size: 17px; }
.split p { margin: 0; color: var(--ink-2); }

.board { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 14px 0 28px; }
.board article { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.board .rec { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 11vw, 52px); line-height: 1; margin: 8px 0 4px; }
.board .pct { font-family: var(--mono); color: var(--flag); font-size: 13px; }
.board .beat { font-family: var(--mono); color: var(--ink-3); font-size: 12px; }

.weeks { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; }
.weeks a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--mono); }
.weeks a[aria-current] { border-color: var(--flag); color: var(--flag); }

@media (min-width: 720px) {
  .calls { grid-template-columns: 1fr 1fr; }
  .board { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1040px) {
  .calls { grid-template-columns: repeat(3, 1fr); }
}


/* ===========================================================================
   V3 — THE FRONT PAGE
   A sports front page, not a document: a compact sticky masthead, a lead
   feature with a rail beside it, a scoreboard strip, and card grids led by
   team colour. Everything below overrides what comes above it.
   =========================================================================== */

body { font-size: 16px; line-height: 1.6; background-image: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 99; background: var(--flag); color: var(--flag-ink);
  padding: 10px 14px; font-weight: 700; border-radius: var(--radius); }
.skip:focus { left: 8px; }

h1, h2, h3, h4, .hed-xl, .hed-l, .hed-m, .hed-s { font-weight: 800; letter-spacing: 0; }

/* ------------------------------------------------------------ utility --- */
.util { background: #000; color: var(--ink-3); font-size: 12px; line-height: 1.3; }
.util .wrap { display: flex; justify-content: space-between; gap: 12px; padding-block: 7px; }
.util-beat { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--flag); }
.util-note { text-align: right; }
.util a { color: var(--ink-2); }
@media (max-width: 560px) { .util-beat { display: none; } .util .wrap { justify-content: center; } .util-note { text-align: center; } }

/* ----------------------------------------------------------- masthead --- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--field) 94%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, var(--flag) 0 90px, transparent 90px); }
.bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0 22px; min-height: 64px; }

.logo { display: inline-flex; align-items: center; gap: 6px; text-decoration: none !important;
  font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase;
  font-size: 28px; line-height: 1; letter-spacing: .01em; white-space: nowrap; }
.logo .lt { color: var(--ink); }
.logo .rv { background: var(--flag); color: var(--flag-ink); padding: 3px 8px 2px 6px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%); }

nav.primary { display: flex; align-items: stretch; gap: 4px; overflow-x: auto; scrollbar-width: none; min-width: 0; align-self: stretch; }
nav.primary::-webkit-scrollbar { display: none; }
nav.primary a {
  flex: none; display: inline-flex; align-items: center; padding: 0 12px; min-height: var(--tap);
  font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2); border-bottom: 3px solid transparent; text-decoration: none;
}
nav.primary a:hover { color: var(--ink); text-decoration: none; }
nav.primary a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--flag); }

.cta { display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px; border-radius: 999px;
  background: var(--flag); color: var(--flag-ink); font-family: var(--display); font-weight: 800;
  font-size: 15px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.cta:hover { background: #ffdd3c; text-decoration: none; }

@media (max-width: 859px) {
  .bar { grid-template-columns: 1fr auto; min-height: 0; padding-top: 10px; }
  .logo { font-size: 24px; }
  .cta { min-height: 34px; font-size: 13px; padding: 0 12px; }
  nav.primary { grid-column: 1 / -1; grid-row: 2; margin-inline: -12px; }
  nav.primary a { font-size: 15px; padding: 0 12px; }
}

main { padding-block: 22px 40px; }
section + section { margin-top: 0; }
.block { margin-top: 44px; }

/* ------------------------------------------------------ section heads --- */
.sec-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 16px; margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.sec-head h2 { display: inline-flex; align-items: center; gap: 12px; font-style: italic; text-transform: uppercase;
  font-size: clamp(26px, 5vw, 34px); line-height: 1; }
.sec-head h2::before { content: ""; width: 12px; height: 26px; background: var(--flag); transform: skewX(-14deg); flex: none; }
.sec-note { color: var(--ink-3); font-size: 14px; flex: 1 1 260px; }
.sec-head > a { margin-left: auto; font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; font-size: 15px; white-space: nowrap; }

/* -------------------------------------------------------- page heads --- */
.page-head { padding: 12px 0 4px; }
.page-head h1 { font-style: italic; text-transform: uppercase; font-size: clamp(36px, 7vw, 64px); line-height: .95; margin: 12px 0 12px; }
.page-head .dek { max-width: 70ch; font-size: 17px; }
.page-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }
.page-tools .weeks { margin: 0; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; }
.jump a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 999px;
  background: var(--field-3); border: 1px solid var(--line); color: var(--ink); font-family: var(--display);
  font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.jump a:hover { border-color: var(--flag); text-decoration: none; }
.weeks a { border-radius: 999px; min-height: 40px; }

/* ------------------------------------------------------------- avatars --- */
.avatar { border-radius: 50%; object-fit: cover; flex: none; background: var(--field-3);
  box-shadow: 0 0 0 2px var(--field), 0 0 0 3px var(--line); display: inline-block; }
.avatar.initials { display: inline-grid; place-items: center; font-family: var(--display); font-weight: 800; color: var(--ink-2); }

/* ------------------------------------------------------------ verdicts --- */
.verdict { font-weight: 800; border-radius: var(--radius); font-size: 15px; letter-spacing: .08em; padding: 6px 10px 5px; }
.verdict.add  { background: var(--flag); color: var(--flag-ink); }
.verdict.drop { background: var(--ink-2); color: var(--field); }
.verdict.mini { font-size: 12px; padding: 3px 7px 2px; letter-spacing: .1em; }

.conf { margin-left: 8px; }
.conf i { border-radius: 1px; }

/* -------------------------------------------------------------- hero --- */
.hero { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 1040px) { .hero { grid-template-columns: minmax(0, 1fr) 360px; } }

.feature {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-lg); border: 1px solid color-mix(in srgb, var(--team) 45%, var(--line));
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--team) 75%, transparent) 0%, transparent 60%),
    linear-gradient(160deg, color-mix(in srgb, var(--team) 45%, var(--field-2)) 0%, var(--field-2) 70%);
}
.feature::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,.025) 22px 23px); }
.feature .wm { position: absolute; right: -10px; top: -30px; z-index: -1; font-family: var(--display);
  font-weight: 800; font-style: italic; font-size: clamp(140px, 24vw, 260px); line-height: 1;
  color: rgba(255,255,255,.07); pointer-events: none; }
.feature-inner { padding: 22px; display: flex; flex-direction: column; gap: 12px; height: 100%; }
.kicker-pill { align-self: flex-start; background: var(--flag); color: var(--flag-ink); font-family: var(--display);
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; padding: 4px 10px 3px;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%); }
.feature h2 { font-style: italic; text-transform: uppercase; line-height: .95; text-wrap: balance;
  font-size: clamp(34px, 6vw, 64px); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.feature h2 a { color: var(--ink); }
.feature-sm h2 { font-size: clamp(28px, 4vw, 38px); }
.feature-meta { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.78); font-size: 16px; }
.feature-take { font-size: 18px; line-height: 1.5; margin: 0; max-width: 60ch; color: var(--ink); }

.faceoff { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: auto; padding-top: 6px; }
@media (min-width: 640px) { .faceoff { grid-template-columns: 1fr 1fr; } }
.side { display: flex; flex-direction: column; gap: 10px; padding: 14px; border-radius: var(--radius-lg);
  background: rgba(7,8,10,.62); border: 1px solid rgba(255,255,255,.08); color: inherit;
  transition: border-color .15s, transform .15s; }
.side:hover { text-decoration: none; border-color: var(--flag); transform: translateY(-2px); }
.side p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.side-head { display: flex; align-items: center; gap: 12px; }
.side-head > div { flex: 1; min-width: 0; line-height: 1.2; }
.side-head b { display: block; font-family: var(--display); font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.side-head .conf { margin: 4px 0 0; }
.feature-lg { min-height: 440px; }
.feature-lg .feature-inner { padding: clamp(20px, 3.4vw, 34px); }

/* -------------------------------------------------------------- rail --- */
.rail { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; overflow: hidden; }
.rail-head { font-style: italic; text-transform: uppercase; font-size: 22px; padding: 14px 16px 12px;
  border-bottom: 2px solid var(--flag); }
.rail-item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft); color: inherit; }
.rail-item:hover { background: var(--field-3); text-decoration: none; }
.rail-item h3 { font-size: 18px; line-height: 1.1; text-transform: uppercase; margin: 5px 0 3px; color: var(--ink); }
.rail-meta { font-size: 12.5px; color: var(--ink-3); }
.rail-all { margin-top: auto; padding: 13px 16px; font-family: var(--display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; }

/* ----------------------------------------------------------- scorebar --- */
.scorebar { display: flex; flex-wrap: wrap; align-items: stretch; margin-top: 18px;
  background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.scorebar > div { padding: 12px 18px; border-right: 1px solid var(--line-soft); flex: 1 1 110px; }
.scorebar span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.scorebar b { display: block; font-family: var(--display); font-weight: 800; font-size: 28px; line-height: 1.05; }
.scorebar .lock { flex: 2 1 220px; }
.scorebar .lock b { color: var(--flag); font-size: 24px; }
.scorebar-link { display: flex; align-items: center; padding: 12px 20px; font-family: var(--display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }

.feature-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .feature-row { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------- cards --- */
.calls { gap: 16px; margin: 0; }
.call { padding: 0; gap: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--field-2);
  transition: border-color .15s, transform .15s; scroll-margin-top: 120px; }
.call:hover { border-color: color-mix(in srgb, var(--team) 60%, var(--line)); }
.call:target { border-color: var(--flag); box-shadow: 0 0 0 2px var(--flag); }
.call-band { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px;
  background: linear-gradient(100deg, var(--team) 0%, color-mix(in srgb, var(--team) 35%, var(--field-2)) 70%, var(--field-2) 100%); }
.call-band .team { font-family: var(--display); font-weight: 800; font-style: italic; font-size: 22px; line-height: 1;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.call-band .pos { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: .1em; color: var(--ink-2); }
.call-body { padding: 14px 16px 12px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.call h3 { font-size: clamp(21px, 4.8vw, 25px); line-height: 1.02; }
.call .take { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.call .by { display: flex; align-items: center; gap: 9px; margin-top: auto; font-size: 14px; }
.call .by b { color: var(--ink); font-weight: 650; }
.call .result { font-family: var(--sans); font-size: 12.5px; color: var(--ink-3); }
.call details { margin-top: 2px; }

/* ------------------------------------------------------------ leaders --- */
.leaders { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .leaders { grid-template-columns: repeat(3, 1fr); } }
.leader { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--field-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg); }
.leader-who { flex: 1; min-width: 0; }
.leader h3 { font-size: 22px; text-transform: uppercase; }
.leader .pct { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.leader .rec { font-family: var(--display); font-weight: 800; font-style: italic; font-size: 40px; line-height: 1; }

/* -------------------------------------------------------------- trust --- */
.trust { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust > div { padding: 16px 18px; border-left: 4px solid var(--flag); background: var(--field-2); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.trust b { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 20px; letter-spacing: .02em; }
.trust p { margin: 4px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

/* -------------------------------------------------- stories & capture --- */
.story { border-radius: var(--radius-lg); }
.story h3 { font-size: clamp(20px, 4.6vw, 24px); }
.capture { border-radius: var(--radius-lg); border-top: 0; position: relative; overflow: hidden;
  background: linear-gradient(120deg, color-mix(in srgb, var(--flag) 16%, var(--field-2)) 0%, var(--field-2) 55%); }
.capture h2 { font-style: italic; font-size: clamp(28px, 6vw, 42px); line-height: 1; }
.capture button { border-radius: 999px; font-weight: 800; }
.capture input[type="email"] { border-radius: 999px; padding-inline: 18px; }
.empty { color: var(--ink-3); }

/* ------------------------------------------------------------- footer --- */
footer.site { background: #000; border-top: 1px solid var(--line); margin-top: 56px; padding-block: 40px 28px;
  padding-bottom: max(28px, env(safe-area-inset-bottom)); }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.foot-brand { grid-column: 1 / -1; }
.foot-brand p { color: var(--ink-3); font-size: 14.5px; max-width: 34ch; margin: 12px 0 0; }
footer.site h4 { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 8px; }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li a { display: inline-flex; align-items: center; min-height: 34px; color: var(--ink-2); font-size: 14.5px; }
footer.site li a:hover { color: var(--flag); text-decoration: none; }
@media (min-width: 860px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } .foot-brand { grid-column: auto; } }
.colophon { font-family: var(--sans); font-size: 12.5px; line-height: 1.7; }

@media print { .util, .masthead, .capture, footer.site { display: none; } }

/* A lone feature in a row takes the row, rather than half of it. */
.feature-row > .feature:only-child { grid-column: 1 / -1; }
/* The lead fills its height with the argument, not with empty field. */
.feature-lg .faceoff { margin-top: 18px; }
.feature-lg .side { padding: 18px; }
.feature-lg .side p { font-size: 17px; line-height: 1.55; color: var(--ink); -webkit-line-clamp: unset; display: block; }
.feature-lg .feature-inner { justify-content: center; }
.feature-lg h2 { font-size: clamp(38px, 6.4vw, 76px); }
/* A section head inside prose keeps the section-head look, not the article h2. */
.prose .sec-head h2 { margin: 0; padding: 0; border: 0; font-size: clamp(26px, 5vw, 34px); letter-spacing: 0; }
.block.prose { max-width: none; }
.block.prose > :not(.sec-head) { max-width: 68ch; }

/* ===========================================================================
   V4 — RANKINGS, PLAYERS, INJURIES, TOOLS
   =========================================================================== */

/* --------------------------------------------------------------- tabs --- */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.tabs a, .tabs button { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--field-2); color: var(--ink-2); font-family: var(--display); font-weight: 800;
  font-size: 15px; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.tabs a:hover, .tabs button:hover { color: var(--ink); border-color: var(--ink-3); text-decoration: none; }
.tabs a[aria-current="page"], .tabs button[aria-pressed="true"] { background: var(--ink); color: var(--field); border-color: var(--ink); }
.tabs.small a, .tabs.small button { min-height: 34px; font-size: 13px; padding: 0 11px; }
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin: 18px 0 14px; }

/* ------------------------------------------------------ status chips --- */
.st { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 6px 1px; border-radius: 3px; line-height: 1.3; white-space: nowrap; vertical-align: middle; }
.st.out { background: var(--overturned); color: #fff; }
.st.doubtful { background: #ff8a3d; color: #111; }
.st.questionable { background: var(--flag); color: var(--flag-ink); }
.st.dnp, .st.limited { background: var(--field-4); color: var(--ink-2); }
.st.bye { background: var(--field-4); color: var(--ink-3); }

/* --------------------------------------------------------- data table --- */
.dtable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--field-2); }
table.dtable { width: 100%; border-collapse: collapse; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.dtable th, .dtable td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
.dtable thead th { position: sticky; top: 0; background: var(--field-3); font-family: var(--display); font-weight: 800; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); z-index: 1; }
.dtable td.num, .dtable th.num { text-align: right; }
.dtable tbody tr:hover { background: var(--field-3); }
.dtable .rk { font-family: var(--display); font-weight: 800; font-size: 20px; width: 1%; color: var(--ink); }
.dtable .pl { white-space: normal; min-width: 180px; }
.dtable .pl a { color: var(--ink); font-weight: 650; }
.dtable .pl a:hover { color: var(--flag); }
.dtable .pl small { display: block; color: var(--ink-3); font-size: 12.5px; }
.dtable .pts { font-family: var(--display); font-weight: 800; font-size: 19px; }
.dtable .teamdot { display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--team); margin-right: 6px; vertical-align: middle; }
.dtable tr.tier td { background: transparent; border-bottom: 0; padding: 16px 12px 6px; font-family: var(--display); font-weight: 800;
  font-style: italic; text-transform: uppercase; letter-spacing: .06em; color: var(--flag); font-size: 14px; }
.dtable tr.tier:hover { background: transparent; }
.mv { font-family: var(--display); font-weight: 800; font-size: 14px; }
.mv.up { color: var(--confirmed); } .mv.down { color: var(--overturned); } .mv.flat { color: var(--ink-3); }
.note-row td { white-space: normal; padding-top: 0; color: var(--ink-2); font-size: 14px; }
.note-row .by { display: flex; gap: 8px; align-items: flex-start; padding: 6px 0; }
.note-row .by b { color: var(--ink); }

/* ---------------------------------------------------------- rank hub --- */
.pos-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .pos-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .pos-grid { grid-template-columns: repeat(4, 1fr); } }
.pos-card { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pos-card h3 { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 14px; border-bottom: 2px solid var(--flag);
  font-style: italic; text-transform: uppercase; font-size: 24px; }
.pos-card h3 a { font-style: normal; font-size: 13px; letter-spacing: .06em; }
.pos-card ol { list-style: none; margin: 0; padding: 4px 0; }
.pos-card li a { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center; padding: 7px 14px; color: var(--ink); }
.pos-card li a:hover { background: var(--field-3); text-decoration: none; }
.pos-card li b { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--ink-3); }
.pos-card li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.pos-card li em { font-style: normal; font-family: var(--display); font-weight: 800; color: var(--ink-2); }

.preview-banner { background: repeating-linear-gradient(135deg, var(--flag) 0 12px, #e6bd00 12px 24px); color: var(--flag-ink);
  font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; text-align: center; padding: 8px; }

/* ------------------------------------------------------------ players --- */
.player-head { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(120deg, color-mix(in srgb, var(--team) 55%, var(--field-2)) 0%, var(--field-2) 65%); padding: 22px; }
.player-head .wm { position: absolute; right: -8px; bottom: -40px; font-family: var(--display); font-weight: 800; font-style: italic;
  font-size: clamp(120px, 22vw, 220px); color: rgba(255,255,255,.07); line-height: 1; pointer-events: none; }
.player-head h1 { font-style: italic; text-transform: uppercase; font-size: clamp(38px, 7vw, 64px); line-height: .95; margin: 6px 0 8px; }
.player-head .meta { color: rgba(255,255,255,.8); font-size: 15px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; }
.facts div span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.facts div b { font-family: var(--display); font-weight: 800; font-size: 20px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-card { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 16px; }
.stat-card span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.stat-card b { display: block; font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1.1; }
.stat-card small { color: var(--ink-3); font-size: 13px; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 22px; }
.two-col > * { min-width: 0; }
@media (min-width: 1040px) { .two-col { grid-template-columns: minmax(0, 1fr) 320px; } }
.side-box { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 16px; }
.side-box h3 { font-style: italic; text-transform: uppercase; font-size: 20px; margin: 0 0 8px; }
.side-box ul { list-style: none; margin: 0; padding: 0; }
.side-box li { padding: 6px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.side-box li:last-child { border-bottom: 0; }

/* ------------------------------------------------------------- search --- */
.search { width: 100%; max-width: 420px; min-height: 44px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--field-2); color: var(--ink); font: inherit; font-size: 16px; }
.search:focus { outline: 2px solid var(--flag); outline-offset: 1px; }
.az { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 4px 16px; }
.az a { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 6px; color: var(--ink); }
.az a:hover { background: var(--field-2); text-decoration: none; }
.az a small { color: var(--ink-3); font-family: var(--display); font-weight: 800; letter-spacing: .04em; }

/* -------------------------------------------------------------- tools --- */
.tool-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .tool-grid { grid-template-columns: repeat(3, 1fr); } }
.tool-card { display: block; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); color: inherit;
  background: linear-gradient(140deg, color-mix(in srgb, var(--flag) 10%, var(--field-2)), var(--field-2) 60%); }
.tool-card:hover { border-color: var(--flag); text-decoration: none; }
.tool-card h3 { font-style: italic; text-transform: uppercase; font-size: 26px; margin: 0 0 6px; }
.tool-card p { color: var(--ink-2); margin: 0; font-size: 15px; }
.compare-pickers { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 720px) { .compare-pickers { grid-template-columns: 1fr 1fr; } }
.compare-out { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
@media (min-width: 720px) { .compare-out { grid-template-columns: 1fr 1fr; } }
.cmp { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--field-2); overflow: hidden; }
.cmp.win { border-color: var(--confirmed); box-shadow: 0 0 0 1px var(--confirmed); }
.cmp .call-band { justify-content: space-between; }
.cmp-body { padding: 14px 16px; }
.cmp-body h3 { font-size: 26px; text-transform: uppercase; }
.cmp-body .big { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1; }
.verdict-box { margin-top: 16px; padding: 16px 18px; border-radius: var(--radius-lg); background: var(--field-3); border-left: 4px solid var(--flag); }
.verdict-box b { font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 26px; }
.fine { color: var(--ink-3); font-size: 13.5px; }
[hidden] { display: none !important; }

/* ===========================================================================
   V5 — PLAYER NOTES
   Click a player: his note opens under the row. Verdict first, then the
   reasons, then the analysts.
   =========================================================================== */
.vd { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 10px 4px; border-radius: var(--radius); line-height: 1.2; }
.vd.must  { background: var(--confirmed); color: var(--field); }
.vd.start { background: color-mix(in srgb, var(--confirmed) 22%, var(--field-3)); color: var(--confirmed); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--confirmed) 55%, transparent); }
.vd.flex, .vd.stream { background: color-mix(in srgb, var(--flag) 16%, var(--field-3)); color: var(--flag); box-shadow: inset 0 0 0 1px var(--flag-dim); }
.vd.bench { background: var(--field-4); color: var(--ink-2); }
.vd.out   { background: var(--overturned); color: #fff; }
.vd.bye   { background: var(--field-4); color: var(--ink-3); }

.pnote { display: flex; flex-direction: column; gap: 10px; padding: 12px 14px; margin: 2px 0 10px; border-radius: var(--radius-lg);
  background: var(--field); border: 1px solid var(--line); border-left: 3px solid var(--flag); white-space: normal; max-width: 820px; }
.pnote-data { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.6; }
.pnote .by { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); padding: 0; }
.pnote .by b { color: var(--ink); margin-right: 4px; }
.pnote-analyst { padding-top: 10px !important; border-top: 1px solid var(--line-soft); }
.pnote-analyst div { color: var(--ink); }
.pnote-calls { margin: 0; font-size: 13.5px; color: var(--ink-3); }
.pnote-link { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 14px; }
.outlook .pnote { max-width: none; margin: 0; padding: 16px 18px; background: var(--field-2); }
.outlook .pnote-data { font-size: 16.5px; }
.outlook .vd { font-size: 17px; padding: 7px 12px 6px; }

.note-row td { padding-top: 0 !important; }
.note-toggle { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 800; font-size: 13px;
  letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.note-toggle[aria-expanded="true"] { color: var(--ink); }
a[data-note][aria-expanded="true"] { color: var(--flag) !important; }
.dtable .pl a[data-note] { cursor: pointer; border-bottom: 1px dotted var(--ink-3); }

/* ===========================================================================
   V6 — launch fixes
   =========================================================================== */
.pnote-asof { margin: 0; font-size: 12.5px; color: var(--ink-3); }
.sec-sub { font-style: italic; text-transform: uppercase; font-size: 22px; margin: 26px 0 10px; }
.trends { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .trends { grid-template-columns: 1fr 1fr; } }
.trends > div { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px 14px; }
.trend-h { font-size: 17px; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 6px; color: var(--ink-2); }
.trend { list-style: none; counter-reset: t; margin: 0; padding: 0; }
.trend li { counter-increment: t; display: grid; grid-template-columns: 22px 1fr auto; align-items: baseline; gap: 2px 8px; padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.trend li:last-child { border-bottom: 0; }
.trend li::before { content: counter(t); font-family: var(--display); font-weight: 800; color: var(--ink-3); }
.trend li a { color: var(--ink); font-weight: 600; }
.trend li small { grid-column: 2; color: var(--ink-3); font-size: 12px; }
.trend li b { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-family: var(--display); font-weight: 800; font-size: 18px; }
.ednote { margin: 8px 0 0; padding: 9px 12px; border-radius: var(--radius); font-size: 14px; line-height: 1.5; color: var(--ink);
  background: color-mix(in srgb, var(--flag) 9%, var(--field-3)); border-left: 3px solid var(--flag); }
.ednote.correction { background: color-mix(in srgb, var(--overturned) 10%, var(--field-3)); border-left-color: var(--overturned); }
.ednote b { display: block; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 12.5px; margin-bottom: 2px; }
.ednote.correction b { color: var(--overturned); }
.ednote-by { color: var(--ink-3); white-space: nowrap; }
.ednote-log { display: grid; gap: 12px; }
.page-head + .ednote, header + .ednote { margin: 0 0 14px; }

/* ===========================================================================
   V7 — TRADE ANALYZER
   =========================================================================== */
.trade { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 820px) { .trade { grid-template-columns: 1fr 1fr; } }
.trade-side { background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.trade-side h2 { font-style: italic; text-transform: uppercase; font-size: 26px; margin: 0; }
.trade-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.trade-list li { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 9px 10px 9px 12px; border-radius: var(--radius);
  background: var(--field); border: 1px solid var(--line-soft); border-left: 4px solid var(--team, var(--line)); }
.trade-list li a { color: var(--ink); font-weight: 650; }
.trade-list li small { display: block; color: var(--ink-3); font-size: 12.5px; }
.trade-list li b { font-family: var(--display); font-weight: 800; font-size: 24px; }
.trade-list li.empty-side { display: block; border-left-color: var(--line); color: var(--ink-3); font-size: 14px; }
.rm { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--field-3); color: var(--ink-2); font-size: 18px; line-height: 1; cursor: pointer; }
.rm:hover { color: var(--overturned); border-color: var(--overturned); }
.trade-total { font-size: 14px; color: var(--ink-2); }
.trade-total b { font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--ink); }
.trade-total small { color: var(--ink-3); }
#tr-result { margin-top: 16px; }
.trade-verdict { border-left-width: 6px; }
.trade-verdict.fair { border-left-color: var(--flag); }
.trade-verdict.win, .trade-verdict.big-win { border-left-color: var(--confirmed); }
.trade-verdict.win > b, .trade-verdict.big-win > b { color: var(--confirmed); }
.trade-verdict.overpay, .trade-verdict.big-overpay { border-left-color: var(--overturned); }
.trade-verdict.overpay > b, .trade-verdict.big-overpay > b { color: var(--overturned); }
.trade-verdict.incomplete { border-left-color: var(--line); }
.trade-bars { display: grid; gap: 8px; margin: 14px 0 6px; }
.trade-bars div { display: grid; grid-template-columns: 70px 1fr 48px; align-items: center; gap: 10px; }
.trade-bars span { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 13px; color: var(--ink-3); }
.trade-bars i { display: block; height: 12px; border-radius: 6px; background: var(--ink-3); min-width: 2px; }
.trade-bars i.get { background: var(--flag); }
.trade-bars em { font-style: normal; font-family: var(--display); font-weight: 800; font-size: 18px; text-align: right; }
.trade-reasons { margin: 8px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.trade-balance { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-2); }
.trade-balance b { color: var(--ink); }
.trade-rules { margin: 0; padding-left: 20px; max-width: 75ch; color: var(--ink-2); line-height: 1.6; }
.trade-rules li { margin-bottom: 8px; }
.trade-rules b { color: var(--ink); }
.add-cell { white-space: nowrap; }
.add-btn { font-family: var(--display); font-weight: 800; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; padding: 5px 9px 4px;
  margin: 2px 3px 2px 0; border-radius: 999px; border: 1px solid var(--line); background: var(--field-3); color: var(--ink); cursor: pointer; }
.add-btn:hover { border-color: var(--flag); color: var(--flag); }
/* Your team (unshipped v7, extended before its first deploy) */
.myteam { margin: 18px 0 14px; background: var(--field-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.myteam > summary { cursor: pointer; list-style: none; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; padding: 14px 16px; }
.myteam > summary::-webkit-details-marker { display: none; }
.myteam > summary span { font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 24px; }
.myteam > summary small { color: var(--ink-3); font-size: 13.5px; }
.myteam > summary::after { content: '▾'; margin-left: auto; color: var(--ink-3); }
.myteam[open] > summary::after { content: '▴'; }
.myteam-body { padding: 0 16px 14px; display: grid; gap: 12px; }
.team-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.team-row .search { flex: 1 1 220px; max-width: none; }
select.search { appearance: none; padding-right: 30px; }
.team-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 6px; }
@media (min-width: 720px) { .team-list { grid-template-columns: 1fr 1fr; } }
.team-list li { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 8px; padding: 6px 8px; border-radius: var(--radius);
  background: var(--field); border: 1px solid var(--line-soft); border-left: 3px solid var(--team, var(--line)); }
.team-list li .slot { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--ink-3); text-align: center; }
.team-list li.starter .slot { color: var(--flag); }
.team-list li .nm { font-weight: 600; font-size: 14.5px; }
.team-list li .nm small { color: var(--ink-3); font-weight: 400; }
.team-list .rm { width: 28px; height: 28px; font-size: 15px; }
.linkish { background: none; border: 0; padding: 0; color: var(--flag); font: inherit; cursor: pointer; text-decoration: underline; }
#tr-team { margin-top: 16px; }
.team-verdict { border-left-width: 6px; }
.team-verdict.helps { border-left-color: var(--confirmed); } .team-verdict.helps > b { color: var(--confirmed); }
.team-verdict.hurts { border-left-color: var(--overturned); } .team-verdict.hurts > b { color: var(--overturned); }
.team-verdict.neutral { border-left-color: var(--flag); }
.trade-reasons b { font: inherit; font-weight: 700; font-style: normal; text-transform: none; letter-spacing: 0; color: var(--ink); }

/* ===========================================================================
   V8 — consent banner (only rendered when cookie-based analytics is on)
   =========================================================================== */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 20px; padding: 14px max(16px, env(safe-area-inset-left)) max(14px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--field) 96%, transparent); border-top: 2px solid var(--flag);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.consent p { margin: 0; max-width: 70ch; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.consent span { display: flex; gap: 8px; }
.consent .btn { min-height: 40px; font-size: 14px; }
