/* RedZoneDaily — brutalist sports styles
   Industrial slab display + Archivo body + JetBrains Mono stats. */

:root {
  /* Base palette (team-agnostic) */
  --bg:          #1f2229;
  --bg-soft:     #272a33;     /* slightly lighter panels */
  --bg-hard:     #16181f;     /* deeper sections / header / footer */
  --line:        #353846;     /* hairline borders */
  --line-strong: #3a3d49;
  --ink:         #f5f6fa;     /* primary text — high contrast */
  --ink-mid:     #c6c9d3;     /* secondary text */
  --ink-low:     #8a8d99;     /* tertiary / metadata */
  --red:         #FF2D2D;     /* breaking news */
  --on-team:     #ffffff;

  /* Team accents — overridden inline per team */
  --team:        #4F2683;
  --team-accent: #FFC62F;

  /* Type */
  --f-display: "Alfa Slab One", "Roboto Slab", Georgia, serif;
  --f-head:    "Zilla Slab", "Roboto Slab", Georgia, serif;
  --f-body:    "Archivo", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ─── Layout ─── */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

/* ─── Site Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-hard);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  position: relative;
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  user-select: none;
  white-space: nowrap;
}
.logo .red { color: var(--red); }
.logo .day { color: var(--ink); }

.nav { display: flex; align-items: stretch; gap: 0; height: 64px; margin-left: auto; }
.nav__item {
  display: flex; align-items: center;
  padding: 0 22px;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-left: 1px solid var(--line);
  cursor: pointer;
  transition: color 0.12s ease, background 0.12s ease;
}
.nav__item:last-child { border-right: 1px solid var(--line); }
.nav__item:hover, .nav__item.is-open { color: var(--ink); background: var(--bg-soft); }
.nav__item .caret {
  margin-left: 8px; font-size: 10px; opacity: 0.7;
}

/* Mega menu — anchored to header inner so it spans the page width */
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-hard);
  border: 1px solid var(--line);
  border-top: 4px solid var(--team-accent);
  padding: 28px 32px 32px;
  display: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.nav__item.is-open .mega { display: block; }
.mega__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega__title {
  font-family: var(--f-display); font-size: 26px; letter-spacing: 0;
  color: var(--ink);
}
.mega__sub {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-low); letter-spacing: 0.16em;
}
.mega__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.mega__col h4 {
  margin: 0 0 10px;
  font-family: var(--f-body); font-weight: 900;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mega__team {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  font-weight: 600; font-size: 14px;
  color: var(--ink-mid);
  transition: color 0.1s, transform 0.1s;
}
.mega__team:hover { color: var(--ink); transform: translateX(2px); }
.mega__team .chip {
  width: 28px; height: 28px; flex: none;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 9px; font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.mega__team .chip__accent {
  width: 6px; height: 28px; flex: none;
}
.mega__team .label {
  display: flex; flex-direction: column; line-height: 1.1;
}
.mega__team .label .city { font-size: 11px; color: var(--ink-low); font-weight: 600; }
.mega__team .label .name { font-size: 14px; }

/* ─── Hero band ─── */
.hero {
  background: var(--team);
  color: var(--on-team);
  position: relative;
  border-bottom: 6px solid var(--team-accent);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 56px 0 36px;
}
.hero__kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--team-accent);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero__kicker .pip {
  display: inline-block; width: 10px; height: 10px;
  background: var(--team-accent);
}
.hero__city {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--on-team);
  text-transform: uppercase;
}
.hero__name {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--team-accent);
  text-transform: uppercase;
}
.hero__meta {
  display: flex; gap: 22px; align-items: center;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--on-team);
  text-transform: uppercase;
  opacity: 0.92;
}
.hero__meta .dot { color: var(--team-accent); }

/* Scoreboard W/L/T */
.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(82px, 1fr));
  gap: 0;
  border: 3px solid var(--team-accent);
  background: rgba(0,0,0,0.18);
}
.scoreboard__cell {
  padding: 14px 18px 16px;
  border-right: 3px solid var(--team-accent);
  text-align: center;
}
.scoreboard__cell:last-child { border-right: 0; }
.scoreboard__label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--team-accent);
  font-weight: 700;
}
.scoreboard__value {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--on-team);
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.scoreboard__foot {
  margin-top: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--team-accent);
  text-transform: uppercase;
}
.scoreboard__foot strong {
  color: var(--on-team); font-weight: 700;
  margin-left: 6px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .scoreboard { max-width: 360px; }
}

/* ─── Breaking ticker ─── */
.ticker {
  position: relative;
  background: var(--bg-hard);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: stretch;
  overflow: hidden;
}
.ticker__label {
  flex: none;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center;
  padding: 0 22px;
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.ticker__label::after {
  content: ""; position: absolute; right: -14px; top: 0; bottom: 0;
  width: 14px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.ticker__label .bolt { margin-right: 8px; }
.ticker__track {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  padding-left: 28px;
  position: relative;
}
.ticker__track::before, .ticker__track::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 36px; z-index: 1; pointer-events: none;
}
.ticker__track::before { left: 0; background: linear-gradient(to right, var(--bg-hard), transparent); }
.ticker__track::after { right: 0; background: linear-gradient(to left, var(--bg-hard), transparent); }
.ticker__strip {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker:hover .ticker__strip { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 28px 14px 0;
  font-size: 14px;
  color: var(--ink);
}
.ticker__item .tag {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  color: var(--bg-hard);
  background: var(--team-accent);
  text-transform: uppercase;
}
.ticker__item .sep {
  color: var(--ink-low); margin-left: 8px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section primitives ─── */
.section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.section--lead { padding: 48px 0 56px; }
.section__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--team-accent);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section__eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 4px;
  background: var(--team-accent);
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-transform: uppercase;
}

/* ─── Lead story / Next game two-column ─── */
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
}
@media (max-width: 980px) { .lead-grid { grid-template-columns: 1fr; gap: 40px; } }

.story__date {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mid);
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 24px;
}
.story__date .pip { width: 8px; height: 8px; background: var(--team-accent); display: inline-block; }
.story__headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.story__summary {
  font-family: var(--f-head);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0 0 24px;
  max-width: 60ch;
  text-wrap: pretty;
}
.story__byline {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-low);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
}
.story__byline a { color: var(--team-accent); }

/* Next game card + schedule */
.aside { display: flex; flex-direction: column; gap: 28px; }

.next-game {
  background: var(--bg-hard);
  border: 1px solid var(--line);
  border-top: 4px solid var(--team-accent);
}
.next-game__head {
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-low);
}
.next-game__head .ha {
  font-weight: 700;
  color: var(--bg-hard);
  background: var(--team-accent);
  padding: 4px 8px;
  letter-spacing: 0.22em;
}
.next-game__body { padding: 22px 22px 24px; }
.next-game__matchup {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
}
.next-game__vs {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-low); letter-spacing: 0.2em;
  text-transform: uppercase;
}
.next-game__opp {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.next-game__row {
  display: grid; grid-template-columns: 80px 1fr; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.next-game__row .k {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-low);
  text-transform: uppercase;
  align-self: center;
}
.next-game__row .v { color: var(--ink); font-weight: 600; }
.next-game__row .v.big {
  font-family: var(--f-mono); font-size: 18px;
  color: var(--team-accent);
  letter-spacing: 0.04em;
}

.schedule {
  background: transparent;
}
.schedule__head {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--ink-low);
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--team-accent);
  margin-bottom: 4px;
}
.schedule__row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.schedule__row:last-child { border-bottom: 0; }
.schedule__wk {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--team-accent);
  font-weight: 700;
}
.schedule__opp {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0;
  display: flex; align-items: baseline; gap: 8px;
}
.schedule__opp .at {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; color: var(--ink-low);
}
.schedule__date {
  font-family: var(--f-mono);
  font-size: 11px; color: var(--ink-mid);
  letter-spacing: 0.12em;
  text-align: right;
}
.schedule__date .note { display: block; color: var(--ink-low); font-size: 10px; }

/* ─── Standings tabs ─── */
.tabs {
  display: flex; gap: 0; margin-bottom: 28px;
  border-bottom: 3px solid var(--line);
}
.tab {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  padding: 18px 32px 16px;
  background: transparent;
  color: var(--ink-low);
  border: 0;
  border-bottom: 6px solid transparent;
  margin-bottom: -3px;
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.tab:hover { color: var(--ink-mid); }
.tab.is-active {
  color: var(--on-team);
  background: var(--team);
  border-bottom-color: var(--team-accent);
}

.standings {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.standings th, .standings td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.standings th {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-low);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--line-strong);
}
.standings td.num, .standings th.num { text-align: right; font-family: var(--f-mono); }
.standings tr.is-team td { background: rgba(255,198,47,0.05); }
.standings tr.is-team td:first-child {
  box-shadow: inset 4px 0 0 var(--team-accent);
}
.standings .team-cell {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
}
.standings .team-chip {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  color: #fff;
  position: relative;
}
.standings .team-chip__accent {
  position: absolute; right: -1px; top: 0; bottom: 0;
  width: 4px;
}
.standings .team-name .city { display: block; font-size: 10px; color: var(--ink-low); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.standings .team-name .name { display: block; font-size: 16px; }
.standings .rank {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-low); width: 20px;
}

/* ─── Past digests ─── */
.digests__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.12s ease;
}
.digests__row:first-child { border-top: 2px solid var(--team-accent); }
.digests__row:last-child { border-bottom: 1px solid var(--line); }
.digests__row:hover { background: rgba(255,255,255,0.02); }
.digests__row:hover .digests__head { color: var(--team-accent); }
.digests__date {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding-top: 6px;
}
.digests__date .no { display: block; color: var(--ink-low); margin-bottom: 4px; }
.digests__head {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
  text-wrap: balance;
  transition: color 0.12s ease;
}
.digests__sum {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.5;
  max-width: 70ch;
}
.digests__arrow {
  font-family: var(--f-mono);
  color: var(--team-accent);
  font-size: 24px;
  padding-top: 6px;
}

.see-more {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  background: var(--bg-hard);
  border: 1px solid var(--line);
  border-left: 4px solid var(--team-accent);
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.see-more:hover { background: var(--team); border-left-color: var(--team-accent); color: var(--on-team); }
.see-more .arrow {
  font-family: var(--f-mono);
  font-size: 26px;
  color: var(--team-accent);
}

@media (max-width: 720px) {
  .digests__row { grid-template-columns: 1fr; gap: 8px; }
  .digests__date { padding-top: 0; }
}

/* ─── Footer ─── */
.foot {
  padding: 48px 0 64px;
  border-top: 2px solid var(--team-accent);
  background: var(--bg-hard);
}
.foot__inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-low);
  text-transform: uppercase;
}
.foot__logo {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

/* ─── Utility: visually hidden for a11y ─── */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════════════
   DAILY DIGEST — ARTICLE PAGE
   ═══════════════════════════════════════════════════════════ */

/* Thin team-strip above the article: identity + record + back link */
.team-strip {
  background: var(--bg-hard);
  border-bottom: 1px solid var(--line);
  border-top: 4px solid var(--team);
  position: relative;
}
.team-strip::before {
  content: ""; position: absolute; top: -4px; left: 0;
  height: 4px; width: 22%; background: var(--team-accent);
}
.team-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}
.team-strip__id {
  display: flex; align-items: center; gap: 20px;
  min-width: 0;
}
.team-strip__mark {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  background: var(--team);
  color: var(--on-team);
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  border: 3px solid var(--team-accent);
  flex: none;
}
.team-strip__id .label { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.team-strip__id .label .conf {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--team-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-strip__id .label .team-name {
  font-family: var(--f-display);
  font-size: 22px; line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.team-strip__record {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-low);
  text-transform: uppercase;
}
.team-strip__record .num {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team-strip__record .num .sep { color: var(--team-accent); }
.team-strip__back {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-mid);
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.team-strip__back:hover { color: var(--on-team); background: var(--team); border-color: var(--team-accent); }

@media (max-width: 720px) {
  .team-strip__inner { flex-wrap: wrap; gap: 16px; }
  .team-strip__back { order: -1; }
}

/* Article container */
.article {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--line);
}
.article__shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .article__shell { padding: 0 20px; } }

.article__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--team-accent);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.article__eyebrow .bar { display: inline-block; width: 36px; height: 4px; background: var(--team-accent); }

.article__headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
}

.article__meta {
  display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.article__meta .k { color: var(--ink-low); margin-right: 8px; }
.article__meta .pip {
  display: inline-block; width: 6px; height: 6px;
  background: var(--team-accent); margin-right: 10px;
}

.article__lede {
  font-family: var(--f-head);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 36px;
  padding-left: 24px;
  border-left: 4px solid var(--team-accent);
  text-wrap: pretty;
}

.article__body { font-size: 18px; line-height: 1.7; color: var(--ink); }
.article__body p { margin: 0 0 22px; text-wrap: pretty; }
.article__body p:first-letter { }
.article__body strong { color: var(--ink); font-weight: 700; }
.article__body em { color: var(--ink-mid); font-style: italic; }
.article__body a { color: var(--team-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.article__h {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 44px 0 18px;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 14px;
}
.article__h .num {
  font-family: var(--f-mono);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--team-accent);
  align-self: center;
  padding: 4px 8px;
  border: 2px solid var(--team-accent);
}

.article__pull {
  margin: 44px -16px;
  padding: 28px 28px 28px 32px;
  background: var(--bg-hard);
  border-left: 6px solid var(--team-accent);
  position: relative;
}
.article__pull q {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  quotes: "\201C" "\201D";
  text-wrap: balance;
}
.article__pull q::before { content: open-quote; color: var(--team-accent); margin-right: 4px; }
.article__pull q::after  { content: close-quote; color: var(--team-accent); margin-left: 4px; }
.article__pull cite {
  display: block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  font-style: normal;
  color: var(--ink-low);
  text-transform: uppercase;
}

.article__byline {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 2px solid var(--team-accent);
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-low);
  text-transform: uppercase;
}
.article__byline .who { color: var(--ink); }
.article__byline .who strong { color: var(--team-accent); font-weight: 700; }

/* More team news section */
.more-news__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.more-news__card {
  display: flex; flex-direction: column;
  padding: 24px 22px 26px;
  background: var(--bg-hard);
  border: 1px solid var(--line);
  border-top: 4px solid var(--team-accent);
  transition: transform 0.12s, border-color 0.12s, background 0.12s;
  min-height: 220px;
  cursor: pointer;
}
.more-news__card:hover { transform: translateY(-2px); border-top-color: var(--ink); }
.more-news__card:hover .more-news__head { color: var(--team-accent); }
.more-news__date {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-low);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; justify-content: space-between;
}
.more-news__date .no { color: var(--team-accent); font-weight: 700; }
.more-news__head {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
  text-wrap: balance;
  transition: color 0.12s;
}
.more-news__sum {
  margin: 0;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.5;
}
.more-news__arrow {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--team-accent);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .more-news__row { grid-template-columns: 1fr; }
}
