:root {
  color-scheme: dark;
  --bg: #080b10;
  --surface: #10151c;
  --surface-2: #151c25;
  --surface-3: #1c2632;
  --text: #f6f8fb;
  --soft: #d8e0ea;
  --muted: #9aa8b8;
  --line: #2b3643;
  --line-strong: #445263;
  --accent: #e6332f;
  --accent-2: #16c784;
  --accent-3: #4aa3ff;
  --gold: #f5c451;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #0b1017 0, var(--bg) 480px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 850px) {
  body {
    padding-bottom: 68px;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0, transparent 540px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-band,
.content-row,
.latest-layout,
.category-layout,
.static-layout,
.related-block,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.post-card,
.compact-story,
.list-story,
.rail-card {
  contain: content;
}

button,
input {
  font: inherit;
}

code {
  color: var(--accent-2);
}

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

.site-header {
  position: relative;
  z-index: 60;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgb(230 51 47 / 45%);
  background: rgb(5 7 10 / 96%);
  box-shadow: 0 10px 28px rgb(0 0 0 / 28%);
}

.bottom-leaderboard-ad {
  display: none;
}

@media (min-width: 1021px) {
  body {
    padding-bottom: 124px;
  }

  .bottom-leaderboard-ad {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 100%;
    height: 104px;
    border-top: 2px solid var(--accent);
    background:
      linear-gradient(90deg, #05070b 0, #0c1018 20%, #050609 50%, #0c1018 80%, #05070b 100%);
    box-shadow: 0 -12px 34px rgb(0 0 0 / 45%);
  }

  .bottom-leaderboard-ad .bottom-ad-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 728px;
    height: 14px;
    border: 1px solid #171d27;
    border-bottom: 0;
    background: #080b10;
    color: #8f9aaa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .bottom-leaderboard-ad .bottom-ad-holder {
    width: 728px;
    height: 90px;
    overflow: hidden;
    background: #000;
  }

  .bottom-leaderboard-ad iframe {
    max-width: none !important;
  }
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px) auto;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  min-height: 58px;
  padding: 3px clamp(12px, 2vw, 20px);
}

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

.brand-only {
  min-width: 112px;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 36px;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-search {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgb(255 255 255 / 9%);
  background: #121519;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 45%);
}

.header-search svg,
.header-action svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.header-search input::placeholder {
  color: #c0c7d1;
}

.header-search button {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.header-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
}

.header-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.header-action:hover {
  color: var(--accent);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 38px;
  padding: 0 clamp(12px, 2vw, 20px);
  border-top: 1px solid rgb(255 255 255 / 6%);
  background: #090c12;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-right: 1px solid rgb(255 255 255 / 6%);
  color: #c8d0dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--text);
  background: #141922;
}

@media (min-width: 1021px) {
  .top-nav {
    justify-content: center;
  }
}

.ticker {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--muted);
  font-size: 13px;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker strong,
.ticker a {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 80%);
}

.ticker strong {
  color: var(--accent-2);
  text-transform: uppercase;
}

.ticker a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.front-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.lead-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
  padding: clamp(24px, 5vw, 48px);
  overflow: hidden;
}

.lead-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 5%) 0%, rgb(0 0 0 / 72%) 58%, rgb(0 0 0 / 95%) 100%);
}

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

.lead-story > *:not(img) {
  position: relative;
  z-index: 1;
}

.kicker,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  color: #fff;
  background: var(--accent);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-story h1 {
  max-width: 790px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-story p {
  max-width: 690px;
  color: var(--soft);
  font-size: 18px;
}

.story-stats {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.top-stack {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.stack-title {
  padding: 15px 16px;
  color: var(--muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-story {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.compact-story span,
.meta {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compact-story strong {
  font-size: 18px;
  line-height: 1.2;
}

.compact-story em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.compact-story:hover {
  background: var(--surface-2);
}

.empty-front {
  grid-template-columns: 1fr;
  align-items: end;
  padding: 48px;
}

.newsroom-grid,
.category-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.newsroom-grid {
  padding: 36px 0;
}

.category-layout {
  padding-bottom: 64px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.section-header a,
.pagination a {
  color: var(--accent-2);
  font-weight: 850;
}

.story-list {
  display: grid;
  gap: 14px;
}

.list-story {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  min-height: 124px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 82%);
}

.list-image {
  display: block;
  min-height: 108px;
  background: var(--surface-2);
  overflow: hidden;
}

.list-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.list-story h3 {
  margin: 4px 0 7px;
  font-size: 21px;
  line-height: 1.18;
}

.list-story p:not(.meta) {
  margin: 0;
  color: var(--muted);
}

.rail {
  display: grid;
  align-content: start;
  gap: 16px;
}

.rail h2 {
  margin: 0;
}

.section-rail,
.rail-card,
.key-facts,
.quick-summary,
.article-toc,
.read-next-box,
.author-trust,
.quality-note,
.faq-block,
.related-block {
  border: 1px solid var(--line);
  background: var(--surface);
}

.section-rail a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.section-rail a:last-child {
  border-bottom: 0;
}

.section-rail span {
  color: var(--soft);
  font-weight: 850;
}

.section-rail a:hover,
.section-rail a.active {
  background: var(--surface-2);
  border-color: var(--line-strong);
}

.rail-headlines {
  display: grid;
  gap: 0;
}

.rail-headlines h3 {
  padding: 14px 14px 10px;
}

.rail-headline {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.rail-headline span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-headline strong {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.25;
}

.rail-headline:hover strong {
  color: var(--text);
}

.rail-card {
  padding: 16px;
}

.rail-card h3 {
  margin: 0 0 8px;
}

.rail-card.rail-headlines {
  padding: 0;
}

.rail-card p {
  margin: 0;
  color: var(--muted);
}

.editor-picks {
  border-color: rgb(230 51 47 / 50%);
}

.topic-rail {
  padding: 0;
}

.topic-rail h3 {
  padding: 14px 14px 10px;
}

.topic-rail div {
  display: grid;
  gap: 0;
}

.topic-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  line-height: 1.25;
}

.topic-rail a:hover {
  background: var(--surface-2);
}

.topic-rail em {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 3px 6px;
  border: 1px solid rgb(22 199 132 / 25%);
  background: rgb(22 199 132 / 8%);
  color: var(--accent-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.launch-card {
  border-color: rgb(22 199 132 / 48%);
}

.topic-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 72%);
}

.topic-strip strong {
  margin-right: 4px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-strip a,
.hub-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--soft);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.topic-strip a:hover,
.hub-quick-links a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section-band {
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 2%);
}

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

.post-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.post-card:hover,
.list-story:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.post-card img,
.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.image-fallback {
  color: var(--accent);
  font-size: 46px;
  font-weight: 950;
}

.post-card .copy {
  padding: 14px;
}

.post-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.post-card p:not(.meta) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-layout {
  padding: 38px 0 68px;
}

.page-heading {
  max-width: 860px;
  padding: 18px 0 28px;
}

.page-heading h1 {
  margin: 0;
  font-size: 62px;
  line-height: 0.98;
}

.page-heading p {
  color: var(--soft);
  font-size: 18px;
}

.hub-page {
  padding-top: 18px;
}

.hub-heading {
  max-width: 980px;
}

.hub-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.section-mini {
  margin-top: 34px;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranked-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ranked-card .rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--accent);
  font-weight: 950;
  box-shadow: 0 10px 24px rgb(0 0 0 / 35%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-bar a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-bar a.active,
.filter-bar a:hover {
  color: var(--text);
  border-color: var(--accent-2);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 700px;
  margin-top: 18px;
}

.search-form input,
.search-form button {
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.search-form input {
  padding: 0 14px;
}

.search-form button {
  padding: 0 18px;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 900;
}

.pagination {
  display: flex;
  gap: 20px;
  padding: 28px 0 0;
}

.article-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 80px;
}

.article-shell.article-layout {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 920px) 190px;
  gap: 36px;
  align-items: start;
}

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

.article {
  max-width: 920px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.article h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.dek {
  color: var(--soft);
  font-size: 20px;
}

.article-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.article-meta-grid span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
}

.article-meta-grid strong,
.article-meta-grid a {
  color: var(--text);
}

.article-kickers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.article-kickers .eyebrow {
  margin: 0;
}

.format-badge {
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-verification {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.article-verification span:first-child {
  color: var(--accent-2);
}

.article-notice {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent-3);
  background: rgb(74 163 255 / 8%);
}

.article-notice.correction-note {
  border-left-color: var(--gold);
  background: rgb(245 196 81 / 8%);
}

.article-notice strong,
.article-notice p {
  display: block;
  margin: 0;
}

.article-notice p {
  margin-top: 4px;
  color: var(--soft);
}

.article-figure {
  margin: 26px 0;
}

.article-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-2);
}

.article-figure figcaption {
  padding: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-note,
.key-facts {
  padding: 16px 18px;
  margin: 22px 0;
}

.quick-summary {
  padding: 18px;
  margin: 22px 0;
  border-color: rgb(22 199 132 / 45%);
}

.quick-summary h2,
.article-toc strong,
.read-next-box h2,
.author-trust strong {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.quick-summary p {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 16px;
}

.quick-summary div,
.article-toc,
.read-next-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-summary a {
  padding: 6px 8px;
  border: 1px solid rgb(255 255 255 / 10%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-summary a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quality-note {
  border-color: rgb(245 196 81 / 45%);
  color: var(--soft);
}

.key-facts {
  border-color: rgb(74 163 255 / 45%);
}

.key-facts h2,
.faq-block h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.key-facts ul {
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
}

.key-facts li + li {
  margin-top: 7px;
}

.article-toc {
  padding: 16px 18px;
  margin: 22px 0;
  display: grid;
  gap: 8px;
}

.article-toc a,
.read-next-box a,
.author-trust a {
  color: var(--accent-2);
  font-weight: 850;
}

.article-body {
  color: #e8edf5;
  font-size: 18px;
  line-height: 1.72;
}

.article-body :is(script, style, iframe[src*="invoke.js"]) {
  display: none !important;
}

.article-body h2,
.article-body h3 {
  color: var(--text);
  line-height: 1.2;
  margin-top: 1.7em;
}

.article-body p {
  margin: 0 0 1.15em;
}

.article-body a {
  color: var(--accent-2);
  text-decoration: underline;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.faq-block {
  padding: 18px;
  margin: 28px 0;
}

.faq-block details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-block p {
  color: var(--muted);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0;
}

.article-tags a {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.read-next-box,
.author-trust {
  padding: 18px;
  margin: 28px 0;
}

.read-next-box {
  display: grid;
}

.read-next-box a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.author-trust {
  color: var(--soft);
}

.author-role,
.author-title {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.author-trust p {
  margin: 0 0 10px;
  color: var(--muted);
}

.author-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.author-specialties span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 11px;
}

.mobile-dock {
  display: none;
}

.search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.search-suggestions strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.search-suggestions a {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.search-suggestions a:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.hub-stream {
  min-width: 0;
}

.hub-stream .section-mini {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hub-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hub-stats span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.hub-stats strong {
  color: var(--text);
  font-size: 15px;
}

.related-block {
  margin-top: 42px;
  padding: 18px;
}

.article-ad-rail {
  position: sticky;
  top: 144px;
  min-height: 640px;
}

.static-page {
  padding: 38px 0 80px;
}

.static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.static-content {
  border: 1px solid var(--line);
  background: rgb(16 21 28 / 84%);
  padding: clamp(22px, 4vw, 44px);
}

.static-content h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1;
}

.static-content h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.static-content h3 {
  margin: 0 0 8px;
}

.static-content p,
.static-content li {
  color: var(--soft);
  font-size: 17px;
}

.static-content a {
  color: var(--accent-2);
  text-decoration: underline;
}

.page-kicker {
  color: var(--accent-2);
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-row,
.policy-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-row span,
.policy-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 16px;
}

.stat-row strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin: 22px 0;
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  font-size: 22px;
  font-weight: 900;
}

.static-rail {
  position: sticky;
  top: 144px;
}

.page-link-rail a.active {
  color: var(--text);
  background: var(--surface-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080c;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(145px, 0.8fr));
  gap: 24px;
  padding: 34px 0;
}

.footer-grid strong {
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.footer-grid p {
  margin: 6px 0 0;
}

.footer-brand img {
  width: 176px;
  height: 52px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #05070a;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--text);
}

@media (max-width: 1020px) {
  .article h1,
  .lead-story h1,
  .page-heading h1,
  .static-content h1 {
    font-size: 52px;
  }

  .front-hero,
  .newsroom-grid,
  .category-frame,
  .article-shell.article-layout,
  .static-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-main {
    grid-template-columns: auto minmax(170px, 1fr) auto;
    gap: 10px;
    min-height: 52px;
  }

  .top-stack {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranked-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-ad-rail,
  .static-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    background: #05080d;
  }

  .shell,
  .ticker,
  .front-hero,
  .article-shell {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .article-shell.article-layout {
    width: 100%;
    max-width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand-only {
    min-width: 88px;
  }

  .brand-logo {
    width: 88px;
    height: 28px;
  }

  .header-main {
    grid-template-columns: 88px minmax(0, 1fr) 28px;
    gap: 8px;
    min-height: 46px;
    padding: 4px 8px;
  }

  .header-search {
    min-height: 34px;
    padding: 0 10px;
  }

  .header-search input {
    font-size: 13px;
  }

  .header-search svg,
  .header-action svg {
    width: 18px;
    height: 18px;
  }

  .header-action {
    width: 28px;
    height: 34px;
  }

  .top-nav {
    min-height: 32px;
    padding: 0;
    scroll-snap-type: x proximity;
  }

  .top-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .ticker {
    gap: 8px;
    margin-top: 12px;
    padding: 0 12px;
  }

  .front-hero,
  .lead-story {
    min-height: 0;
  }

  .front-hero {
    margin-top: 12px;
    border-right: 0;
    border-left: 0;
    background: #090d13;
  }

  .lead-story {
    min-height: min(620px, calc(100svh - 154px));
    padding: 20px 16px 22px;
  }

  .lead-story h1 {
    font-size: clamp(32px, 10.6vw, 46px);
    line-height: 1.02;
  }

  .lead-story p {
    font-size: 17px;
  }

  .top-stack {
    background: #111821;
  }

  .newsroom-grid,
  .category-frame,
  .page-layout,
  .category-layout,
  .static-page,
  .article-shell {
    padding-right: 12px;
    padding-left: 12px;
  }

  .newsroom-grid {
    gap: 20px;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .section-band {
    padding: 22px 0 30px;
  }

  .section-band .shell {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .list-story {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .list-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .ranked-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding-top: 18px;
    padding-bottom: 86px;
  }

  .article h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .lead-story h1 {
    font-size: 40px;
  }

  .page-heading h1,
  .static-content h1 {
    font-size: 36px;
  }

  .dek {
    font-size: 19px;
  }

  .article-meta-grid {
    display: grid;
    gap: 8px;
  }

  .article-meta-grid span {
    width: 100%;
    padding: 10px 12px;
  }

  .article-figure {
    width: calc(100% + 24px);
    margin: 22px -12px;
  }

  .article-image {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .article-figure figcaption {
    padding-right: 12px;
    padding-left: 12px;
  }

  .quick-summary,
  .key-facts,
  .article-toc,
  .faq-block,
  .read-next-box,
  .author-trust,
  .related-block {
    margin: 18px 0;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 65;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 58px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line-strong);
    background: rgb(5 8 13 / 97%);
    box-shadow: 0 -8px 24px rgb(0 0 0 / 35%);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    min-width: 0;
    color: var(--muted);
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus-visible {
    color: var(--text);
    background: var(--surface);
  }

  .mobile-dock span {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-dock strong {
    font-size: 10px;
    font-weight: 800;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.68;
  }

  .footer-grid {
    display: grid;
    gap: 22px;
    padding: 28px 12px 86px;
  }

  .stat-row,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .topic-rail a {
    align-items: flex-start;
  }

  .topic-rail a span {
    min-width: 0;
  }

  .topic-rail em {
    min-width: 76px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .brand-only {
    min-width: 76px;
  }

  .brand-logo {
    width: 76px;
    height: 24px;
  }

  .header-main {
    grid-template-columns: 76px minmax(0, 1fr) 26px;
  }

  #floatingAd {
    width: 100%;
  }

  #floatingAd .ad-content-holder {
    margin: 0 auto;
  }
}
