:root {
  --navy: #0f1b3d;
  --navy-deep: #080f25;
  --navy-soft: #1a2654;
  --gold: #c9a84c;
  --gold-light: #e4ce8f;
  --ink: #172039;
  --muted: #667085;
  --cream: #f6f2e9;
  --paper: #fffdf9;
  --line: rgba(15, 27, 61, 0.14);
  --white: #fff;
  --wide: 1320px;
  --article: 900px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1300;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.58);
}

.wide-shell {
  width: min(calc(100% - 48px), var(--wide));
  margin-inline: auto;
}

.preview-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.preview-bar.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 15, 37, 0.94);
  backdrop-filter: blur(16px);
}

.preview-bar-inner {
  min-height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-lockup b {
  color: var(--gold-light);
  font-weight: 600;
}

.draft-label {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-main-nav,
.press-language-switch {
  display: flex;
  align-items: center;
}

.press-main-nav {
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
}

.press-main-nav > a,
.press-nav-dropdown-toggle {
  min-height: 40px;
  padding: 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.press-main-nav > a:hover,
.press-main-nav > a:focus-visible,
.press-nav-dropdown-toggle:hover,
.press-nav-dropdown-toggle:focus-visible,
.press-nav-dropdown.is-current > .press-nav-dropdown-toggle {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.press-nav-dropdown {
  position: relative;
}

.press-nav-dropdown-menu {
  min-width: 216px;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--navy);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.press-nav-dropdown:hover .press-nav-dropdown-menu,
.press-nav-dropdown:focus-within .press-nav-dropdown-menu,
.press-nav-dropdown.is-open .press-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.press-nav-dropdown-menu a {
  padding: 10px 18px;
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.press-nav-dropdown-menu a:hover,
.press-nav-dropdown-menu a:focus-visible,
.press-nav-dropdown-menu a.is-current {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.press-main-nav > .press-nav-results {
  margin-left: 7px;
  padding-inline: 16px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
}

.press-main-nav > .press-nav-results:hover,
.press-main-nav > .press-nav-results:focus-visible {
  color: var(--navy);
  background: var(--gold-light);
}

.press-language-switch {
  margin-left: 6px;
  gap: 2px;
}

.press-language-switch a {
  padding: 7px 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.press-language-switch a:hover,
.press-language-switch a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.press-nav-toggle {
  width: 44px;
  height: 42px;
  padding: 0;
  display: none;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 7px;
  background: var(--gold);
  cursor: pointer;
}

.press-nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.press-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.press-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.press-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.report-hero {
  min-height: min(860px, 92svh);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--white);
}

.report-hero-image,
.report-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.report-hero-image {
  max-width: none;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.055);
  animation: hero-image-in 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.report-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 28, 0.9) 0%, rgba(5, 10, 28, 0.54) 53%, rgba(5, 10, 28, 0.14) 82%),
    linear-gradient(180deg, rgba(5, 10, 28, 0.12) 30%, rgba(5, 10, 28, 0.9) 100%);
}

.report-hero-inner {
  padding-bottom: clamp(52px, 8vh, 94px);
}

.hero-kicker,
.section-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: hero-copy-in 700ms ease-out 100ms both;
}

.hero-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.report-hero h1 {
  max-width: 970px;
  margin: 24px 0 32px;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(48px, 7.4vw, 104px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.96;
  text-wrap: balance;
  animation: hero-copy-in 780ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.hero-meta {
  max-width: 840px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  animation: hero-copy-in 760ms ease-out 300ms both;
}

.hero-meta span + span::before {
  content: "/";
  padding: 0 14px;
  color: var(--gold);
}

@keyframes hero-image-in {
  from { opacity: 0.5; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.055); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.article-shell {
  width: min(calc(100% - 48px), 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, var(--article));
  gap: clamp(54px, 8vw, 112px);
  justify-content: center;
}

.article-nav {
  height: max-content;
  margin-top: 104px;
  padding-left: 20px;
  position: sticky;
  top: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--line);
}

.article-nav-label {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-nav a {
  padding: 6px 0;
  position: relative;
  color: rgba(23, 32, 57, 0.56);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.article-nav a:hover,
.article-nav a.is-current {
  color: var(--navy);
  transform: translateX(4px);
}

.report-article {
  min-width: 0;
}

.article-section {
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.section-number {
  padding-top: 6px;
  color: rgba(15, 27, 61, 0.24);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-kicker {
  color: #9b7623;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(34px, 4.6vw, 55px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.06;
  text-wrap: balance;
}

.highlight-title .highlight-player {
  display: block;
  text-wrap: wrap;
}

.highlight-title .highlight-player + .highlight-player {
  margin-top: 0.12em;
}

.highlight-result {
  margin-left: 0.2em;
  color: #9b7623;
  font-size: 0.72em;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.report-copy,
.highlight-copy {
  max-width: 760px;
}

.report-copy p,
.highlight-copy p {
  margin: 0 0 1.35em;
}

.report-copy p:first-child {
  font-size: 20px;
  line-height: 1.75;
}

.report-copy p:first-child::first-letter {
  margin: 10px 10px 0 0;
  float: left;
  color: var(--gold);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.72;
}

/* Blitz side-event report */
.blitz-report-page .report-hero-image {
  object-position: center 50%;
}

.blitz-report-page .report-hero h1 {
  max-width: 1040px;
  font-size: clamp(46px, 7vw, 96px);
}

.blitz-podium {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15, 27, 61, 0.34);
  list-style: none;
}

.blitz-podium li {
  min-height: 112px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.podium-rank {
  color: #a17c27;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.blitz-podium li > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.blitz-podium strong {
  color: var(--navy);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.12;
}

.blitz-podium li > div > span {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-photo {
  margin: 66px 0 0;
}

.report-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.report-photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-deep);
}

.report-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.report-photo-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.report-photo figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Closing report */
.closing-report-page .report-hero-image {
  object-position: center 46%;
}

.closing-report-page .report-hero h1 {
  max-width: 1100px;
  font-size: clamp(46px, 6.8vw, 94px);
}

.closing-report-page .report-photo-frame {
  aspect-ratio: 16 / 10;
}

.closing-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(240px, 0.58fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: start;
}

.closing-story-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-deep);
}

.closing-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.closing-story-photo:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.closing-film {
  margin-top: 48px;
  overflow: hidden;
  background: var(--navy-deep);
}

.closing-film-frame {
  aspect-ratio: 16 / 9;
  background: #050a1c;
}

.closing-film-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

code {
  padding: 0.12em 0.34em;
  border: 1px solid rgba(15, 27, 61, 0.1);
  border-radius: 4px;
  background: var(--cream);
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.89em;
  font-weight: 600;
  white-space: nowrap;
}

.move-line {
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  overflow-x: auto;
}

.move-line code {
  padding: 0;
  border: 0;
  background: transparent;
}

.highlight-layout {
  display: block;
}

.board-stage {
  width: 100%;
  min-width: 0;
  margin-top: 48px;
  position: static;
  border: 1px solid rgba(15, 27, 61, 0.2);
  background: var(--navy-deep);
}

.board-stage-head {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-stage-head span:last-child {
  color: var(--gold-light);
}

.board-stage iframe {
  width: 100%;
  height: 650px;
  display: block;
  border: 0;
  background: #f0d9b5;
}

.board-external {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.board-external span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  transition: transform 180ms ease;
}

.board-external:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.board-external:hover span {
  transform: translate(3px, -3px);
}

.game-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: game;
}

.game-list li {
  min-width: 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  counter-increment: game;
}

.game-list li::before {
  content: counter(game, decimal-leading-zero);
  padding-top: 2px;
  color: #a17c27;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.game-list li:first-child {
  border-top-color: rgba(15, 27, 61, 0.34);
}

.game-list strong {
  color: var(--navy);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  border-top: 1px solid var(--line);
}

.source-list a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.source-list a::after {
  content: "\2197\FE0E";
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  transition: transform 180ms ease;
}

.source-list a:hover::after {
  transform: translate(3px, -3px);
}

.report-footer {
  padding: 34px 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.report-footer .wide-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.report-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.report-footer a:hover {
  color: var(--white);
}

/* Reports archive */
.archive-hero {
  min-height: min(720px, 78svh);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--white);
}

.archive-hero-image,
.archive-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.archive-hero-image {
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-image-in 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.archive-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 10, 28, 0.88) 0%, rgba(5, 10, 28, 0.48) 58%, rgba(5, 10, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 10, 28, 0.1) 30%, rgba(5, 10, 28, 0.9) 100%);
}

.archive-hero-inner {
  padding-bottom: clamp(58px, 9vh, 96px);
}

.archive-hero h1 {
  max-width: 980px;
  margin: 20px 0 24px;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(64px, 9.5vw, 132px);
  font-weight: 600;
  letter-spacing: -0.056em;
  line-height: 0.9;
  animation: hero-copy-in 780ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.archive-hero-intro {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
  animation: hero-copy-in 760ms ease-out 280ms both;
}

.archive-index {
  padding: clamp(84px, 11vw, 148px) 0;
}

.archive-index-inner {
  max-width: 1180px;
}

.archive-index-heading {
  max-width: 720px;
  margin-bottom: 72px;
}

.archive-index-heading h2 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.archive-index-heading > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.archive-list {
  border-top: 1px solid rgba(15, 27, 61, 0.34);
}

.archive-round {
  padding: clamp(42px, 6.5vw, 78px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.archive-round-image {
  aspect-ratio: 16 / 10;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy-deep);
}

.archive-round-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 15, 37, 0.58));
  pointer-events: none;
}

.archive-round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.archive-round-image > span {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 1;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.archive-round-image > .archive-event-mark {
  bottom: 16px;
  font-size: clamp(30px, 4.8vw, 56px);
  letter-spacing: -0.04em;
}

.archive-round:hover .archive-round-image img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.archive-round-meta {
  margin: 0 0 16px;
  color: #9b7623;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.archive-round-copy h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(33px, 4.3vw, 54px);
  font-weight: 600;
  letter-spacing: -0.044em;
  line-height: 1.02;
}

.archive-round-copy h2 a {
  text-decoration: none;
  transition: color 180ms ease;
}

.archive-round-copy h2 a:hover {
  color: #9b7623;
}

.archive-round-copy > p:not(.archive-round-meta) {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.archive-languages {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 27, 61, 0.28);
  font-size: 13px;
  font-weight: 700;
}

.archive-languages a {
  color: var(--navy);
  text-decoration-color: rgba(201, 168, 76, 0.58);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.archive-languages a:hover {
  color: #9b7623;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (min-width: 981px) and (max-width: 1250px) {
  .press-site-header .wide-shell {
    width: min(calc(100% - 28px), var(--wide));
  }

  .brand-lockup {
    gap: 7px;
    font-size: 12px;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .press-main-nav {
    gap: 0;
    font-size: 11px;
  }

  .press-main-nav > a,
  .press-nav-dropdown-toggle {
    padding-inline: 6px;
  }

  .press-main-nav > .press-nav-results {
    margin-left: 3px;
    padding-inline: 12px;
  }

  .press-language-switch {
    margin-left: 2px;
  }

  .press-language-switch a {
    padding-inline: 3px;
    font-size: 10px;
  }
}

@media (max-width: 1050px) {
  .article-shell {
    display: block;
    width: min(calc(100% - 48px), var(--article));
  }

  .article-nav {
    margin: 0 -24px;
    padding: 0 24px;
    top: 71px;
    z-index: 90;
    min-height: 58px;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

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

  .article-nav-label {
    display: none;
  }

  .article-nav a {
    min-height: 58px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .article-nav a:hover,
  .article-nav a.is-current {
    transform: none;
  }

  .highlight-copy {
    max-width: 760px;
  }

  .board-stage iframe {
    height: min(720px, 78vw);
    min-height: 540px;
  }

  .archive-round {
    gap: 42px;
  }
}

@media (max-width: 980px) {
  body.press-menu-open {
    overflow: hidden;
  }

  .preview-bar.menu-open,
  .preview-bar.is-scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(8, 15, 37, 0.98);
    backdrop-filter: blur(16px);
  }

  .preview-bar-inner {
    min-height: 64px;
  }

  .press-nav-toggle {
    display: grid;
  }

  .press-main-nav {
    max-height: calc(100svh - 64px);
    padding: 10px 0 18px;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 15, 37, 0.99);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
  }

  .press-main-nav.is-open {
    display: flex;
  }

  .press-main-nav > a,
  .press-nav-dropdown-toggle {
    width: 100%;
    min-height: 50px;
    padding: 13px 24px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    font-size: 15px;
  }

  .press-nav-dropdown {
    width: 100%;
  }

  .press-nav-dropdown-toggle {
    justify-content: space-between;
  }

  .press-nav-dropdown-menu {
    min-width: 0;
    padding: 0;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
  }

  .press-nav-dropdown.is-open .press-nav-dropdown-menu {
    display: block;
  }

  .press-nav-dropdown-menu a {
    padding: 12px 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 14px;
  }

  .press-main-nav > .press-nav-results {
    width: auto;
    margin: 12px 18px 4px;
    justify-content: center;
    border-bottom: 0;
    border-radius: 7px;
  }

  .press-language-switch {
    width: 100%;
    margin: 4px 0 0;
    padding: 8px 18px 0;
    justify-content: center;
    gap: 8px;
  }

  .press-language-switch a {
    padding: 7px 12px;
    font-size: 12px;
  }

  .article-nav {
    top: 63px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    line-height: 1.72;
  }

  .wide-shell,
  .article-shell {
    width: min(calc(100% - 32px), var(--wide));
  }

  .preview-bar-inner {
    min-height: 64px;
  }

  .brand-lockup {
    font-size: 12px;
  }

  .brand-lockup img {
    width: 36px;
    height: 36px;
  }

  .press-language-switch {
    gap: 5px;
  }

  .draft-label {
    padding: 5px 8px;
    letter-spacing: 0.1em;
  }

  .report-hero {
    min-height: 78svh;
  }

  .report-hero-image {
    object-position: 42% center;
  }

  .report-hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 10, 28, 0.76), rgba(5, 10, 28, 0.36)),
      linear-gradient(180deg, rgba(5, 10, 28, 0.14) 18%, rgba(5, 10, 28, 0.94) 92%);
  }

  .report-hero-inner {
    padding-bottom: 42px;
  }

  .report-hero h1 {
    margin: 18px 0 24px;
    font-size: clamp(40px, 13.2vw, 64px);
    line-height: 0.98;
  }

  .hero-meta {
    display: block;
  }

  .hero-meta span {
    display: block;
  }

  .hero-meta span + span {
    margin-top: 3px;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .article-nav {
    margin: 0 -16px;
    padding: 0 16px;
    top: 63px;
  }

  .article-section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .section-number {
    font-size: 22px;
  }

  .section-heading h2 {
    font-size: clamp(31px, 10vw, 43px);
  }

  .report-copy p:first-child {
    font-size: 18px;
  }

  .blitz-report-page .report-hero-image {
    object-position: 52% center;
  }

  .blitz-report-page .report-hero h1 {
    font-size: clamp(38px, 12.2vw, 58px);
  }

  .blitz-podium li {
    min-height: 96px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .blitz-podium li > div {
    display: block;
  }

  .blitz-podium strong {
    display: block;
    font-size: clamp(23px, 7.2vw, 31px);
  }

  .blitz-podium li > div > span {
    margin-top: 6px;
    display: block;
    font-size: 10px;
  }

  .report-photo {
    margin-top: 48px;
  }

  .report-photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .closing-report-page .report-hero h1 {
    font-size: clamp(36px, 9.9vw, 48px);
    text-wrap: wrap;
  }

  .closing-story-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .closing-story-photo {
    width: min(100%, 380px);
  }

  .closing-film {
    margin-top: 38px;
  }

  code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .board-stage iframe {
    height: 610px;
    min-height: 0;
  }

  .game-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
  }

  .game-list strong {
    font-size: 16px;
  }

  .report-footer .wide-shell {
    flex-direction: column;
    gap: 4px;
  }

  .archive-hero {
    min-height: 66svh;
  }

  .archive-hero-image {
    object-position: 58% center;
  }

  .archive-hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 10, 28, 0.78), rgba(5, 10, 28, 0.32)),
      linear-gradient(180deg, rgba(5, 10, 28, 0.12) 16%, rgba(5, 10, 28, 0.94) 94%);
  }

  .archive-hero-inner {
    padding-bottom: 42px;
  }

  .archive-hero h1 {
    margin: 16px 0 20px;
    font-size: clamp(52px, 17vw, 76px);
  }

  .archive-hero-intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .archive-index {
    padding: 74px 0 88px;
  }

  .archive-index-heading {
    margin-bottom: 50px;
  }

  .archive-index-heading h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .archive-round {
    padding: 44px 0 52px;
    display: block;
  }

  .archive-round-image {
    margin-bottom: 30px;
  }

  .archive-round-copy h2 {
    font-size: clamp(31px, 9.6vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .preview-bar,
  .reading-progress,
  .article-nav,
  .board-stage,
  .closing-film {
    display: none !important;
  }

  .report-hero {
    min-height: 0;
    padding: 48px 0;
    color: var(--navy);
    background: transparent;
  }

  .report-hero-image,
  .report-hero-shade,
  .archive-hero-image,
  .archive-hero-shade {
    display: none;
  }

  .report-hero h1 {
    color: var(--navy);
  }

  .archive-hero {
    min-height: 0;
    padding: 48px 0;
    color: var(--navy);
    background: transparent;
  }

  .archive-hero h1 {
    color: var(--navy);
  }

  .hero-kicker,
  .hero-meta {
    color: var(--ink);
  }

  .article-shell {
    display: block;
    width: 100%;
  }

  .article-section {
    break-inside: avoid;
  }
}
