:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --bg-soft: #eef1f5;
  --paper: #ffffff;
  --paper-elevated: #fbfcfe;
  --ink: #101217;
  --muted: #5c6370;
  --muted-strong: #343a46;
  --line: #dde2ea;
  --line-strong: #c6ceda;
  --dark: #0c111a;
  --dark-2: #171d27;
  --red: #d71920;
  --green: #10b981;
  --yellow: #f5b942;
  --blue: #2563eb;
  --accent: #d71920;
  --max: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 22px 60px rgba(16, 18, 23, .1);
  --shadow-soft: 0 12px 32px rgba(16, 18, 23, .08);
  --header-bg: rgba(246, 247, 249, .88);
  --live-bg: #0c111a;
  --live-ink: #d8dde7;
  --hero-wash: rgba(16, 18, 23, .68);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070a0f;
  --bg-soft: #0d121b;
  --paper: #111720;
  --paper-elevated: #161d28;
  --ink: #f5f7fb;
  --muted: #a1a9b7;
  --muted-strong: #d8dee8;
  --line: #263241;
  --line-strong: #354457;
  --dark: #f5f7fb;
  --dark-2: #dce3ee;
  --red: #ff3d45;
  --green: #34d399;
  --yellow: #f8c96b;
  --blue: #7aa2ff;
  --accent: #ff3d45;
  --shadow: 0 22px 60px rgba(0, 0, 0, .36);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, .24);
  --header-bg: rgba(7, 10, 15, .86);
  --live-bg: #05070b;
  --live-ink: #c6cfdd;
  --hero-wash: rgba(3, 6, 11, .74);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--paper) 0, var(--bg-soft) 360px, var(--bg) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color .2s ease, color .2s ease;
}

html[data-theme="dark"] body {
  background:
    linear-gradient(180deg, #090d14 0, var(--bg) 320px, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

img { max-width: 100%; display: block; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.live-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 44px;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: var(--live-bg);
  color: var(--live-ink);
  overflow-x: auto;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  scrollbar-width: none;
}

.live-strip::-webkit-scrollbar { display: none; }
.live-strip strong { color: #fffdf7; }

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(215, 25, 32, .78);
  flex: 0 0 auto;
}

.site-header,
.site-footer,
main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
  background: var(--header-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 28px rgba(16, 18, 23, .04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 1000;
  letter-spacing: 0;
  box-shadow: inset 0 -6px 0 var(--red), var(--shadow-soft);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

.brand-text {
  display: grid;
  line-height: .92;
  text-transform: uppercase;
}

.brand-text strong { font-size: 19px; letter-spacing: 0; }
.brand-text em { color: var(--red); font-style: normal; font-size: 13px; font-weight: 1000; }

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar { display: none; }

.main-nav a,
.sport-filter {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,.58) inset;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.main-nav a:hover,
.sport-filter:hover,
.sport-filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.theme-toggle:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px 0 50px;
}

.hero-grid > *,
.hero-intro > *,
.content-grid > *,
.rhythm-grid > *,
.quick-stack > *,
.board-grid > *,
.hub-grid > * {
  min-width: 0;
}

.hero-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: end;
  padding-bottom: 8px;
}

.desk-note {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  color: var(--muted-strong);
  box-shadow: var(--shadow-soft);
  font-weight: 750;
}

.desk-note strong,
.desk-note span {
  display: block;
  overflow-wrap: anywhere;
}

.desk-note strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.filter-bar {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.lead-card,
.story-card,
.threads-module,
.hub-grid a,
.article-shell,
.trust-page {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-card {
  position: relative;
  min-width: 0;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8,12,18,.05), rgba(8,12,18,.84)),
    linear-gradient(135deg, rgba(215,25,32,.24), transparent 36%),
    #0b1018;
}

.lead-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.06);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7,10,15,.04) 0 34%, rgba(7,10,15,.9)),
    linear-gradient(90deg, rgba(7,10,15,.78), rgba(7,10,15,.22) 54%, rgba(7,10,15,.64));
  background-size: 84px 100%, auto;
  opacity: .9;
  z-index: 1;
}

.lead-card::after {
  content: "NoDechev Sports";
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  padding: clamp(22px, 4vw, 36px);
  max-width: 790px;
  color: #fff;
}

.card-content p {
  color: rgba(255, 255, 255, .78);
  max-width: 680px;
  overflow-wrap: anywhere;
}
.card-content h1,
.card-content h2,
.card-content h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

.label,
.sport-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 8px 12px 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #101217;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.breaking { background: var(--red); color: white; }
.live { background: var(--blue); color: white; }
.score { background: var(--yellow); color: #12100a; }

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card-actions a,
.threads-module a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.card-actions a:first-child {
  background: #fff;
  color: #101217;
}

.lead-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 24px 0 0;
  background: rgba(255,255,255,.22);
}

.lead-meta div {
  padding: 12px;
  background: rgba(7,7,7,.58);
}

.lead-meta dt,
.lead-meta dd {
  margin: 0;
}

.lead-meta dt {
  color: rgba(255,253,247,.58);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.lead-meta dd {
  margin-top: 3px;
  color: #fffdf7;
  font-size: 12px;
  font-weight: 900;
}

.quick-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.story-card {
  min-height: 258px;
  padding: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--sport-accent, var(--red)) 16%, transparent), transparent 42%),
    linear-gradient(180deg, var(--paper-elevated), var(--paper));
  z-index: 0;
}

.story-card::after {
  content: attr(data-sport);
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: color-mix(in srgb, var(--ink) 6%, transparent);
  font-size: 54px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.story-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.story-card > * { position: relative; z-index: 1; }
.story-card h3,
.story-card p { width: 100%; }
.story-card p { color: var(--muted); margin-bottom: 0; font-weight: 650; }
.story-card p,
.story-card a { overflow-wrap: anywhere; }
.story-card.is-hidden { display: none; }
.feed-list a.is-hidden { display: none; }

.visual-nfl { --sport-accent: #2563eb; --accent: #2563eb; }
.visual-nba { --sport-accent: #d97706; --accent: #d97706; }
.visual-epl { --sport-accent: #7c3aed; --accent: #7c3aed; }
.visual-ucl { --sport-accent: #1d4ed8; --accent: #1d4ed8; }
.visual-ufc { --sport-accent: #d71920; --accent: #d71920; }
.visual-f1 { --sport-accent: #ef4444; --accent: #ef4444; }
.visual-mlb { --sport-accent: #0f766e; --accent: #0f766e; }

.desk-board {
  padding: 0 0 50px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.board-grid article {
  min-height: 186px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  border-top: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.board-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
}

.board-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  padding-bottom: 50px;
}

.section-head { margin-bottom: 16px; }
.section-head h2 { max-width: 760px; }

.feed-list {
  display: grid;
  border-top: 3px solid var(--ink);
  background: transparent;
}

.feed-list a {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 132px;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
}

.feed-list span { color: var(--red); font-size: 12px; text-transform: uppercase; }
.feed-list strong {
  min-width: 0;
  overflow-wrap: break-word;
}
.feed-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.threads-module {
  position: sticky;
  top: 92px;
  padding: 24px;
  align-self: start;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #111827, #070a0f);
  color: #fff;
}

.threads-module h2 { font-size: 32px; }
.threads-module p { color: #d5d0c4; }
.threads-module .section-kicker { color: #ff646b; }

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  padding-bottom: 52px;
}

.rhythm-panel,
.trust-rail a {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.rhythm-panel {
  padding: clamp(22px, 4vw, 34px);
}

.rhythm-panel h2 {
  max-width: 700px;
}

.rhythm-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rhythm-panel li {
  padding: 16px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--muted-strong);
}

.trust-rail {
  display: grid;
  gap: 10px;
  align-self: start;
}

.trust-rail a {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.trust-rail span {
  color: var(--red);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.trust-rail strong {
  font-size: 20px;
  line-height: 1.05;
}

.league-hubs { padding-bottom: 58px; }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hub-grid a {
  min-height: 136px;
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease;
}

.hub-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  color: var(--ink);
}

.hub-grid strong { display: block; font-size: 30px; margin-bottom: 8px; }
.hub-grid span { color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(280px, 1.4fr) auto;
  align-items: start;
  gap: 28px;
  padding: 32px 0 46px;
  border-top: 3px solid var(--ink);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.footer-note {
  display: grid;
  gap: 7px;
  justify-items: end;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-note span {
  border-left: 3px solid var(--red);
  padding-left: 10px;
  color: var(--muted-strong);
  white-space: nowrap;
}

.article-shell,
.trust-page {
  max-width: 940px;
  margin: 24px auto 60px;
}

.article-hero {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(180deg, rgba(7,10,15,.08), rgba(7,10,15,.9)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent, var(--red)) 72%, transparent), transparent 34%),
    #0b1018;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 86px 100%;
  opacity: .45;
}

.article-hero .card-content { max-width: 850px; }
.article-hero h1 { font-size: clamp(40px, 6vw, 72px); }

.byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,7,7,.34);
  color: #fffdf7;
}

.byline img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fffdf7;
}

.byline span { display: grid; gap: 1px; line-height: 1.1; }
.byline strong { font-size: 14px; }
.byline small { color: #d5d0c4; font-size: 12px; font-weight: 800; }

.article-body,
.trust-page {
  padding: clamp(22px, 4vw, 42px);
}

.article-body {
  background: var(--paper);
  font-size: 18px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.quick-read,
.threads-post,
.source-box {
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  padding: 18px;
  margin: 24px 0;
  color: var(--ink);
}

.threads-post { border-left-color: var(--red); }
.source-box { border-left-color: var(--yellow); }

.article-body p,
.article-body li,
.trust-page p,
.trust-page li { color: var(--muted-strong); }

.article-body h2 { font-size: 30px; margin-top: 32px; }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.trust-page {
  background: var(--paper);
}

.trust-page h1 { font-size: clamp(42px, 7vw, 72px); }
.trust-page h2 {
  margin-top: 30px;
  font-size: 28px;
  line-height: 1.05;
}
.trust-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.author-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.author-card img {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  object-fit: cover;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero-grid,
  .content-grid,
  .rhythm-grid { grid-template-columns: 1fr; }
  .hero-intro { grid-template-columns: 1fr; }
  .threads-module { position: static; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid,
  .rhythm-panel ul { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 9px 0 10px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 38px;
  }
  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 2px;
  }
  .theme-toggle {
    grid-column: 2;
    grid-row: 1;
  }
  .brand {
    gap: 9px;
    min-width: 0;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: inset 0 -5px 0 var(--red), var(--shadow-soft);
  }
  .brand-text strong { font-size: 18px; }
  .brand-text em { font-size: 12px; }
  .theme-toggle {
    width: 34px;
    height: 34px;
    box-shadow: none;
  }
  .main-nav a,
  .sport-filter {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11px;
  }
  .hero-grid {
    gap: 14px;
    padding: 22px 0 38px;
  }
  .hero-intro {
    gap: 16px;
    padding-bottom: 0;
  }
  .section-kicker {
    margin-bottom: 7px;
    font-size: 11px;
  }
  h1 { font-size: 34px; line-height: .96; }
  h2 { font-size: 27px; line-height: 1.02; }
  .desk-note {
    padding: 15px;
    border-top-width: 3px;
    box-shadow: 0 10px 24px rgba(16, 18, 23, .07);
  }
  .desk-note span {
    font-size: 17px;
    line-height: 1.35;
  }
  .lead-card { min-height: 440px; }
  .lead-card img { object-position: 58% center; }
  .card-content h2 { font-size: 26px; }
  .lead-meta {
    margin-top: 16px;
    background: rgba(255,255,255,.14);
  }
  .lead-meta div { padding: 10px 12px; }
  .desk-note span,
  .card-content h2,
  .card-content p,
  .story-card h3,
  .story-card p {
    max-width: 280px;
  }
  .quick-stack,
  .hub-grid { grid-template-columns: 1fr; }
  .story-card {
    min-height: 164px;
    padding: 16px;
  }
  .story-card::after { font-size: 42px; }
  .lead-meta { grid-template-columns: 1fr; }
  .content-grid,
  .desk-board,
  .rhythm-grid,
  .league-hubs { padding-bottom: 38px; }
  .section-head { margin-bottom: 12px; }
  .content-grid .section-head h2,
  .league-hubs .section-head h2,
  .desk-board .section-head h2,
  .rhythm-panel h2 {
    font-size: 26px;
    line-height: 1.04;
  }
  .feed-list { border-top-width: 2px; }
  .feed-list a {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 0;
    font-size: 18px;
    line-height: 1.14;
  }
  .feed-list span,
  .feed-list em { font-size: 11px; }
  .feed-list em { text-align: left; }
  .board-grid article {
    min-height: 150px;
    padding: 16px;
    border-top-width: 3px;
  }
  .board-grid span { margin-bottom: 18px; }
  .threads-module,
  .rhythm-panel { padding: 18px; }
  .threads-module h2 { font-size: 26px; }
  .rhythm-panel ul { margin-top: 16px; }
  .rhythm-panel li { padding: 14px; }
  .hub-grid a {
    min-height: 104px;
    padding: 16px;
    border-radius: var(--radius-sm);
  }
  .hub-grid strong {
    margin-bottom: 6px;
    font-size: 26px;
  }
  .hub-grid span {
    display: block;
    font-size: 16px;
    line-height: 1.35;
  }
  .footer-links { gap: 8px; }
  .footer-note {
    justify-items: start;
    gap: 6px;
  }
  .article-shell,
  .trust-page { margin: 18px auto 44px; }
  .trust-page h1 { font-size: 40px; }
  .trust-page h2 { font-size: 24px; }
  .article-hero { min-height: 340px; }
  .article-hero h1 { font-size: 44px; }
  .article-body { font-size: 17px; }
  .author-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .author-card img {
    width: min(100%, 260px);
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 390px) {
  .site-header,
  .site-footer,
  main { width: min(var(--max), calc(100% - 22px)); }
  .live-strip { padding-inline: 12px; }
  .brand-text strong { font-size: 16px; }
  .brand-text em { font-size: 11px; }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .main-nav a,
  .sport-filter { padding: 7px 10px; }
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  .card-content h2 { font-size: 25px; }
  .lead-card { min-height: 500px; }
  .card-actions a { min-height: 40px; padding: 10px 12px; }
  .desk-note span,
  .card-content h2,
  .card-content p,
  .story-card h3,
  .story-card p {
    max-width: 260px;
  }
  .card-content { padding: 18px; }
  .byline { width: 100%; }
}
