/* =========================================================
   BOOST MLBB NEWSROOM
   Editorial layer for /news/ and article pages.
   ========================================================= */

.news-page {
  --news-ink: #f3f8f7;
  --news-muted: #9ba9b2;
  --news-panel: rgba(11, 31, 47, 0.82);
  --news-panel-solid: #0b1f2f;
  --news-border: rgba(176, 255, 222, 0.13);
  --news-green: #00ff9d;
  --news-cyan: #45d9ff;
  --news-orange: #ffb15c;
  --news-reading: 760px;
  background:
    radial-gradient(circle at 15% -5%, rgba(0, 255, 157, 0.11), transparent 34rem),
    linear-gradient(180deg, #06121e 0%, #081725 52%, #06121e 100%);
  color: var(--news-ink);
  min-height: 100vh;
  overflow-x: clip;
}

.news-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

.news-page a {
  text-underline-offset: 0.2em;
}

.news-page .site-header {
  background: rgba(6, 18, 30, 0.88);
}

.news-page .lang-switcher .lang-option {
  text-decoration: none;
}

.news-page .lang-switcher .lang-option:focus-visible {
  outline: 2px solid var(--news-cyan);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .news-page .lang-switcher {
    margin-left: auto;
    margin-right: 0.65rem;
  }
}

.news-page .site-footer {
  background: #05101a;
  border-top: 1px solid var(--news-border);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  background: var(--news-green);
  color: #06121e;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.preview-banner {
  position: fixed;
  z-index: 1100;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(92vw, 680px);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 177, 92, 0.5);
  border-radius: 999px;
  background: rgba(46, 27, 8, 0.96);
  color: #ffce94;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

/* Editorial index */

.news-masthead {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 3.2rem;
  border-bottom: 1px solid var(--news-border);
}

.news-masthead::after {
  content: "NEWSROOM";
  position: absolute;
  right: -0.03em;
  bottom: -0.26em;
  color: transparent;
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.news-masthead__grid {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1040px;
}

.editorial-kicker,
.section-eyebrow,
.article-box-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: var(--news-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-kicker span {
  width: 2.8rem;
  height: 1px;
  background: currentColor;
}

.news-masthead h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.45rem, 7vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.news-masthead h1 span,
.news-masthead h1 em {
  display: block;
}

.news-masthead h1 em {
  color: var(--news-green);
  font-style: normal;
  font-weight: 350;
}

.news-masthead__lead {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: #b8c6cc;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.55;
}

.news-masthead__jump {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
  color: var(--news-ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.news-masthead__jump span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--news-border);
  border-radius: 50%;
  color: var(--news-green);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-masthead__jump:hover span {
  transform: translateY(0.25rem);
  border-color: var(--news-green);
}

.news-masthead__desk {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--news-border);
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 58%),
    rgba(8, 27, 41, 0.76);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.news-masthead__desk::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.22), transparent 34%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.desk-label {
  color: var(--news-muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.news-masthead__desk ol {
  display: grid;
  gap: 0;
  margin: 1.15rem 0;
  list-style: none;
}

.news-masthead__desk li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  min-height: 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #dfe9e8;
  font-size: 0.92rem;
}

.news-masthead__desk li span {
  color: var(--news-green);
  font-size: 0.68rem;
  font-weight: 800;
}

.news-masthead__desk > p {
  color: var(--news-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.news-feed-section {
  padding: clamp(2.25rem, 2.75vw, 3rem) 0 clamp(5rem, 7vw, 7rem);
}

.editorial-topics {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.news-empty {
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--news-border);
  border-radius: 1.4rem;
  background: rgba(8, 27, 41, 0.78);
}

.news-empty h2 {
  max-width: 760px;
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.055em;
}

.news-empty > p:last-child {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--news-muted);
}

.news-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.news-section-heading h2 {
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
}

#news-results-title {
  scroll-margin-top: 5.5rem;
}

#news-results-title:focus {
  outline: none;
}

.section-eyebrow {
  margin-bottom: 0.6rem;
}

.section-note {
  max-width: 430px;
  color: var(--news-muted);
  font-size: 0.94rem;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.news-filter-tools {
  display: flex;
  justify-content: flex-end;
}

.news-filter-tools[hidden] {
  display: none;
}

.news-filter-select {
  display: none;
}

.news-filter {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--news-border);
  border-radius: 999px;
  background: transparent;
  color: var(--news-muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-filter:hover,
.news-filter.is-active {
  border-color: rgba(0, 255, 157, 0.52);
  background: rgba(0, 255, 157, 0.1);
  color: var(--news-ink);
}

.news-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.news-filter-empty {
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px dashed rgba(176, 255, 222, 0.2);
  border-radius: 1.2rem;
  background: rgba(8, 26, 40, 0.5);
}

.news-filter-empty[hidden] {
  display: none;
}

.news-filter-empty h3 {
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.news-filter-empty > p:last-child {
  max-width: 620px;
  margin: 0.75rem 0 0;
  color: var(--news-muted);
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.5rem;
}

.news-pagination[hidden] {
  display: none;
}

.news-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.news-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--news-border);
  border-radius: 0.75rem;
  background: rgba(8, 26, 40, 0.68);
  color: #b8c6cc;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.news-pagination button:hover:not(:disabled),
.news-pagination button:focus-visible,
.news-pagination__page.is-current {
  border-color: rgba(0, 255, 157, 0.55);
  background: rgba(0, 255, 157, 0.11);
  color: var(--news-ink);
}

.news-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.news-pagination__step {
  gap: 0.5rem;
}

.news-pagination__ellipsis {
  min-width: 1.5rem;
  color: var(--news-muted);
  text-align: center;
}

.news-card {
  border: 1px solid var(--news-border);
  border-radius: 1.5rem;
  background: rgba(8, 26, 40, 0.76);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-0.3rem);
  border-color: rgba(0, 255, 157, 0.38);
  box-shadow: 0 1.7rem 4rem rgba(0, 0, 0, 0.26);
}

.news-card[hidden] {
  display: none;
}

.news-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card--featured .news-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  min-height: 0;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 250px;
  background: #0c2638;
}

.news-card--featured .news-card__media {
  align-self: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(3, 12, 20, 0.7));
  pointer-events: none;
}

.news-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--card-object-fit, cover);
  object-position: var(--card-object-position, 50% 50%);
  transition: transform 0.8s var(--ease-out-expo), filter 0.35s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.news-card__category,
.article-category {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.36rem 0.65rem;
  border: 1px solid rgba(0, 255, 157, 0.35);
  border-radius: 999px;
  background: rgba(3, 18, 25, 0.78);
  color: var(--news-green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.news-card__category {
  position: absolute;
  z-index: 1;
  left: 1.1rem;
  bottom: 1.1rem;
}

.news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.6rem);
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--news-muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.news-card__content h2 {
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.news-card__content p {
  margin: 1.25rem 0 0;
  color: #afbdc4;
  font-size: 1rem;
  line-height: 1.65;
}

.news-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
  color: var(--news-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.news-card__action span {
  transition: transform 0.2s ease;
}

.news-card:hover .news-card__action span {
  transform: translateX(0.28rem);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.news-grid .news-card__media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.news-grid .news-card__content h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.editorial-topics {
  border-top: 1px solid var(--news-border);
  background: rgba(4, 15, 24, 0.38);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--news-border);
  border-bottom: 1px solid var(--news-border);
}

.topic-card {
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--news-border);
}

.topic-card:last-child {
  border-right: 0;
}

.topic-card > span {
  color: var(--news-green);
  font-size: 0.72rem;
  font-weight: 850;
}

.topic-card h3 {
  margin: 3rem 0 0.8rem;
  color: var(--news-ink);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
}

.topic-card p {
  max-width: 320px;
  color: var(--news-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Article */

.reading-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--news-green), var(--news-cyan));
  box-shadow: 0 0 14px rgba(0, 255, 157, 0.6);
}

.article-header {
  padding: 6.25rem 0 1.5rem;
}

.article-header__inner {
  max-width: 1000px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.8rem;
  padding: 0;
  color: var(--news-muted);
  font-size: 0.76rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.26);
}

.breadcrumbs li.breadcrumbs-news::after {
  content: none;
}

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

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

.breadcrumbs-current {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.article-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.article-topics > span:not(.article-category) {
  color: #92a4ac;
  font-size: 0.72rem;
}

.article-topics > span:not(.article-category)::before {
  content: "#";
  color: rgba(0, 255, 157, 0.62);
}

.article-header h1 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--news-ink);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  letter-spacing: -0.068em;
  line-height: 0.99;
  text-wrap: balance;
}

.article-heading {
  max-width: 1000px;
  margin-top: 1.45rem;
  text-align: center;
}

.article-deck {
  max-width: 820px;
  margin: 1rem auto 0;
  color: #b6c5ca;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.article-meta {
  max-width: 1000px;
}

.author-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 255, 157, 0.36);
  border-radius: 50%;
  background: rgba(0, 255, 157, 0.1);
  color: var(--news-green);
  font-weight: 900;
}

.article-byline > div {
  display: grid;
  gap: 0.12rem;
}

.article-byline strong {
  color: #e8f1ef;
  font-size: 0.84rem;
}

.article-byline span {
  color: var(--news-muted);
  font-size: 0.74rem;
}

.article-updated {
  margin-left: auto;
  text-align: right;
}

.article-hero-media {
  max-width: 1000px;
}

.article-hero-media figure {
  margin: 0;
}

.article-hero-media picture {
  display: block;
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border: 1px solid var(--news-border);
  border-radius: 1.5rem;
  background: #0b2233;
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.article-hero-media figcaption {
  margin-top: 0.55rem;
  color: #7f9099;
  font-size: 0.7rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, var(--news-reading)) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.article-rail {
  align-self: stretch;
  position: relative;
  width: calc(100% + 0.85rem);
  margin-left: -0.85rem;
}

.article-rail__sticky {
  position: sticky;
  top: 6rem;
  max-height: calc(100vh - 7.5rem);
  padding: 0.25rem 0.45rem 0.5rem 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(0, 255, 157, 0.32) transparent;
  scrollbar-width: thin;
}

.article-toc {
  padding: 1.05rem 0.9rem 1rem;
  border: 1px solid var(--news-border);
  border-left-color: rgba(0, 255, 157, 0.48);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(0, 255, 157, 0.055), transparent 55%),
    rgba(7, 25, 38, 0.72);
  box-shadow:
    inset 2px 0 0 rgba(0, 255, 157, 0.34),
    0 1rem 2.7rem rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.article-toc > p {
  margin: 0 0 0.75rem;
  padding: 0 0.7rem;
  color: #b5c4c8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.58rem 0.7rem;
  border-radius: 0.68rem;
  color: #a4b3b9;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: var(--news-green);
  background: rgba(0, 255, 157, 0.075);
  box-shadow: inset 2px 0 0 rgba(0, 255, 157, 0.72);
  transform: translateX(0.12rem);
}

.article-toc a:focus-visible {
  outline: 2px solid var(--news-green);
  outline-offset: 2px;
}

.rail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  margin: 0.75rem 0 0 0.65rem;
  padding: 0.45rem 0.65rem;
  color: #8fa1a8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.rail-back:hover {
  color: var(--news-ink);
}

.article-content {
  grid-column: 2;
  min-width: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.13rem);
  line-height: 1.82;
}

.article-content > p {
  margin: 0 0 1.55rem;
  color: #d2dcdd;
}

.article-content > h2 {
  margin: 4.25rem 0 1.35rem;
  scroll-margin-top: 7rem;
  color: var(--news-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.article-content > h2::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 0.18rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--news-green);
}

.article-key-facts,
.article-callout,
.editorial-note {
  margin: 0 0 2.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--news-border);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(0, 255, 157, 0.07), transparent 45%),
    var(--news-panel);
}

.article-key-facts h2 {
  margin: 0 0 1rem;
  color: var(--news-ink);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.article-key-facts ul,
.article-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-key-facts li,
.article-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #d7e1e1;
}

.article-key-facts li::before,
.article-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--news-green);
  box-shadow: 0 0 0 0.28rem rgba(0, 255, 157, 0.08);
}

.article-list {
  margin-bottom: 1.8rem;
}

.article-callout {
  margin: 2rem 0;
  border-left: 3px solid var(--news-cyan);
  background: rgba(69, 217, 255, 0.055);
}

.article-callout p:last-child {
  margin: 0;
  color: #d7e5e8;
  font-size: 0.98em;
}

.article-table-wrap {
  max-width: 100%;
  margin: 1.7rem 0 0.85rem;
  overflow-x: auto;
  border: 1px solid var(--news-border);
  border-radius: 1.1rem;
  background: rgba(6, 23, 36, 0.75);
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.article-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.article-table-wrap caption {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--news-border);
  color: var(--news-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #cedadb;
  font-size: 0.88rem;
  text-align: left;
}

.article-table-wrap thead th {
  background: rgba(0, 255, 157, 0.06);
  color: var(--news-green);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-table-wrap tbody th {
  color: var(--news-ink);
  white-space: nowrap;
}

.article-table-wrap tbody tr:last-child th,
.article-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.article-table-note {
  margin: 0 0 2rem !important;
  color: #84969e !important;
  font-size: 0.76rem;
  line-height: 1.55;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.8rem 0 2rem;
}

.match-card {
  position: relative;
  min-height: 170px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--news-border);
  border-radius: 1rem;
  background: rgba(7, 26, 39, 0.8);
}

.match-number {
  position: absolute;
  top: -0.18em;
  right: 0.1em;
  color: rgba(255, 255, 255, 0.035);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.match-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.15rem;
}

.match-card strong {
  color: var(--news-ink);
  font-size: 0.94rem;
}

.match-card div span {
  color: var(--news-green);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.match-card p {
  position: relative;
  z-index: 1;
  margin: 1.2rem 0 0;
  color: var(--news-muted);
  font-size: 0.72rem;
}

.rank-cta {
  position: relative;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr) minmax(220px, 0.72fr);
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
  margin: 3rem -2.5rem;
  padding: clamp(1.45rem, 3vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 255, 157, 0.48);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 255, 157, 0.17), transparent 16rem),
    radial-gradient(circle at 88% 10%, rgba(69, 217, 255, 0.16), transparent 17rem),
    linear-gradient(118deg, #062c30 0%, #071f2d 48%, #08283a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1.8rem 5rem rgba(0, 0, 0, 0.3);
}

.rank-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 7% 24%, rgba(226, 255, 247, 0.8) 0 1px, transparent 1.7px),
    radial-gradient(circle at 18% 73%, rgba(0, 255, 157, 0.7) 0 1px, transparent 1.8px),
    radial-gradient(circle at 44% 16%, rgba(226, 255, 247, 0.58) 0 1px, transparent 1.6px),
    radial-gradient(circle at 69% 76%, rgba(69, 217, 255, 0.55) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 22%, rgba(226, 255, 247, 0.64) 0 1px, transparent 1.6px),
    radial-gradient(circle at 95% 61%, rgba(0, 255, 157, 0.54) 0 1px, transparent 1.8px);
  opacity: 0.72;
  pointer-events: none;
}

.rank-cta::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(0, 255, 157, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(0, 255, 157, 0.035),
    0 0 0 4rem rgba(0, 255, 157, 0.022);
  pointer-events: none;
}

.rank-cta__emblem {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(0, 255, 157, 0.42);
  border-radius: 1.05rem;
  background:
    linear-gradient(145deg, rgba(0, 255, 157, 0.18), rgba(0, 255, 157, 0.045)),
    rgba(3, 24, 34, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0.85rem 2rem rgba(0, 0, 0, 0.24);
}

.rank-cta__emblem span {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  background: linear-gradient(145deg, #e9fff7 0%, var(--news-green) 45%, #45d9ff 100%);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  filter: drop-shadow(0 0 0.55rem rgba(0, 255, 157, 0.65));
}

.rank-cta__emblem::after {
  content: "";
  position: absolute;
  top: 0.65rem;
  right: 0.58rem;
  width: 0.35rem;
  height: 0.35rem;
  background: #e9fff7;
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  filter: drop-shadow(0 0 0.35rem rgba(69, 217, 255, 0.75));
}

.rank-cta__copy,
.rank-cta__action {
  position: relative;
  z-index: 1;
}

.rank-cta__copy > p {
  margin: 0 0 0.35rem;
  color: var(--news-green);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rank-cta__copy h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(1.6rem, 2.55vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.rank-cta__copy > span {
  display: block;
  max-width: 39ch;
  margin-top: 0.55rem;
  color: #aec0c5;
  font-size: 0.78rem;
  line-height: 1.45;
}

.rank-cta__action {
  display: grid;
  justify-items: stretch;
  gap: 0.55rem;
  width: 100%;
  min-width: 220px;
}

.rank-cta__action a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 3.7rem;
  padding: 0.72rem 0.78rem 0.72rem 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  background: linear-gradient(135deg, #00ff9d, #16e7bc);
  color: #06141f;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    0 0.9rem 2.4rem rgba(0, 255, 157, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.rank-cta__action a:hover {
  transform: translateY(-0.18rem);
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 1.1rem 3rem rgba(0, 255, 157, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.rank-cta__action a:focus-visible {
  outline: 3px solid #f5fffb;
  outline-offset: 4px;
}

.rank-cta__button-label {
  position: relative;
  z-index: 1;
}

.rank-cta__arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  background: rgba(3, 24, 34, 0.13);
  font-size: 1rem;
  transition: transform 0.25s var(--ease-spring), background 0.25s ease;
}

.rank-cta__action a:hover .rank-cta__arrow {
  transform: translateX(0.16rem);
  background: rgba(3, 24, 34, 0.2);
}

.rank-cta__action small {
  color: #95a9af;
  font-size: 0.63rem;
  text-align: center;
}

.article-link-card {
  position: relative;
  display: grid;
  gap: 0.2rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 3.5rem 1.25rem 1.3rem;
  border: 1px solid var(--news-border);
  border-radius: 1rem;
  background: rgba(7, 26, 40, 0.7);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.article-link-card:hover {
  border-color: rgba(0, 255, 157, 0.44);
  background: rgba(0, 255, 157, 0.055);
}

.article-link-card > span {
  color: var(--news-green);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-link-card strong {
  color: var(--news-ink);
  font-size: 1.05rem;
}

.article-link-card small {
  color: var(--news-muted);
  font-size: 0.76rem;
}

.article-link-card b {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  color: var(--news-green);
}

.article-sources {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--news-border);
}

.article-sources h2 {
  margin: 0 0 1.2rem;
  color: var(--news-ink);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.article-sources ol {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sources;
}

.article-sources li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.15rem 0.75rem;
  counter-increment: sources;
}

.article-sources li::before {
  content: counter(sources, decimal-leading-zero);
  grid-row: 1 / span 2;
  color: var(--news-green);
  font-size: 0.66rem;
  font-weight: 850;
}

.article-sources a {
  color: #dbe6e5;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
  text-decoration-color: rgba(0, 255, 157, 0.35);
}

.article-sources li > span {
  color: var(--news-muted);
  font-size: 0.68rem;
}

.editorial-note {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.025);
}

.editorial-note strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--news-ink);
  font-size: 0.82rem;
}

.editorial-note p {
  margin: 0;
  color: var(--news-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.article-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--news-border);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-tags span {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--news-border);
  border-radius: 999px;
  color: #a9b8bd;
  font-size: 0.68rem;
}

.article-footer > p {
  margin: 1rem 0 0;
  color: var(--news-muted);
  font-size: 0.72rem;
}

.article-footer a {
  color: var(--news-green);
}

.article-next {
  padding: 5.5rem 0;
  border-top: 1px solid var(--news-border);
  background:
    radial-gradient(circle at 15% 100%, rgba(0, 255, 157, 0.09), transparent 28rem),
    #071520;
}

.article-next__inner {
  max-width: 1050px;
}

.article-next p {
  margin: 0 0 0.75rem;
  color: var(--news-green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-next h2 {
  max-width: 800px;
  margin: 0;
  color: var(--news-ink);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  letter-spacing: -0.06em;
}

.article-next a {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.8rem;
  color: var(--news-green);
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
}

/* Tablet */

@media (max-width: 1100px) {
  .news-card--featured .news-card__link {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .article-layout {
    grid-template-columns: minmax(175px, 215px) minmax(0, var(--news-reading));
    gap: 2.5rem;
  }

  .rank-cta {
    margin-inline: -1.5rem;
  }
}

@media (max-width: 900px) {
  .news-masthead {
    padding-top: 6.5rem;
  }

  .news-card--featured .news-card__link {
    grid-template-columns: 1fr;
  }

  .news-card--featured .news-card__media {
    aspect-ratio: 16 / 9;
  }

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

  .article-layout {
    display: block;
    max-width: 840px;
  }

  .article-rail {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2.5rem;
  }

  .article-rail__sticky {
    position: static;
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .article-toc {
    padding: 1.2rem;
    border: 1px solid var(--news-border);
    border-radius: 1rem;
    background: rgba(7, 25, 38, 0.68);
  }

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

  .rail-back {
    display: none;
  }

  .article-content {
    width: 100%;
    max-width: var(--news-reading);
    margin-inline: auto;
  }

  .rank-cta {
    grid-template-columns: 3.3rem minmax(0, 1fr) minmax(210px, 0.7fr);
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
  }

  .rank-cta__emblem {
    width: 3.3rem;
    height: 3.3rem;
  }

  .rank-cta__action {
    width: 100%;
  }

  .rank-cta__action a {
    width: 100%;
    min-height: 3.4rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .news-page::before {
    background-size: 32px 32px;
  }

  .news-masthead {
    padding: 4.85rem 0 2rem;
  }

  .news-masthead h1 {
    font-size: clamp(2.35rem, 11.5vw, 3rem);
    line-height: 0.9;
  }

  .news-masthead__lead {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .news-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .news-filters {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 0 0.35rem;
    scrollbar-width: none;
  }

  .news-filter {
    flex: 0 0 auto;
  }

  .news-feed-section,
  .editorial-topics {
    padding: 3.5rem 0;
  }

  .news-feed-section {
    padding-top: 2.4rem;
  }

  .news-card {
    border-radius: 1.15rem;
  }

  .news-card--featured .news-card__link {
    min-height: 0;
  }

  .news-card__content {
    padding: 1.35rem;
  }

  .news-card__content h2 {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  .news-card__content p {
    font-size: 0.92rem;
  }

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

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

  .topic-card {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--news-border);
  }

  .topic-card:last-child {
    border-bottom: 0;
  }

  .topic-card h3 {
    margin-top: 2rem;
  }

  .article-header {
    padding: 4.75rem 0 1.75rem;
  }

  .breadcrumbs ol {
    margin-bottom: 0.65rem;
  }

  .article-topics {
    margin-bottom: 0.75rem;
  }

  .article-topics > span:not(.article-category) {
    display: none;
  }

  .article-header h1 {
    max-width: 20ch;
    font-size: clamp(1.85rem, 7.6vw, 2.55rem);
    line-height: 1.01;
  }

  .article-deck {
    max-width: 42rem;
    margin-top: 0.75rem;
    font-size: 0.94rem;
  }

  .article-byline {
    margin-bottom: 0.8rem;
  }

  .article-updated {
    flex-basis: 100%;
    margin-left: 3.3rem;
    text-align: left;
  }

  .article-hero-media {
    padding-inline: 0.75rem;
  }

  .article-hero-media img {
    border-radius: 1rem;
  }

  .article-layout {
    padding-top: 2.8rem;
    padding-bottom: 4.5rem;
  }

  .article-rail {
    display: none;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.76;
  }

  .article-content > h2 {
    margin-top: 3.5rem;
    scroll-margin-top: 5rem;
  }

  .article-key-facts,
  .article-callout,
  .editorial-note {
    border-radius: 1rem;
  }

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

  .article-next {
    padding: 4rem 0;
  }

  .preview-banner {
    border-radius: 0.85rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 640px) {
  .news-filter-tools {
    width: 100%;
  }

  .news-filters {
    display: none;
  }

  .news-filter-select {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    color: var(--news-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .news-filter-select select {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.65rem 2.4rem 0.65rem 0.85rem;
    border: 1px solid rgba(0, 255, 157, 0.36);
    border-radius: 0.8rem;
    background: #0a2131;
    color: var(--news-ink);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: none;
  }

  .news-pagination {
    gap: 0.4rem;
  }

  .news-pagination button {
    min-width: 2.6rem;
    min-height: 2.6rem;
    padding-inline: 0.65rem;
  }

  .news-pagination__step span:not([aria-hidden="true"]) {
    display: none;
  }

  .rank-cta {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.35rem;
  }

  .rank-cta__emblem {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.85rem;
  }

  .rank-cta__emblem span {
    width: 1.35rem;
    height: 1.35rem;
  }

  .rank-cta__copy {
    padding-right: 3.25rem;
  }

  .rank-cta__copy h2 {
    max-width: 15ch;
    font-size: clamp(1.65rem, 8.2vw, 2.05rem);
  }

  .rank-cta__copy > span {
    max-width: 34ch;
  }

  .rank-cta__action {
    min-width: 0;
  }

  .rank-cta__action a {
    width: 100%;
    min-height: 3.75rem;
  }
}

@media (max-width: 700px) {
  .article-table-wrap {
    margin-inline: 0;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .article-table-wrap table {
    display: block;
    min-width: 0;
  }

  .article-table-wrap caption {
    display: block;
    border: 1px solid var(--news-border);
    border-radius: 1rem;
    background: rgba(6, 23, 36, 0.82);
    line-height: 1.45;
  }

  .article-table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .article-table-wrap tbody {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.65rem;
  }

  .article-table-wrap tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 0.65fr);
    overflow: hidden;
    border: 1px solid var(--news-border);
    border-radius: 0.9rem;
    background: rgba(6, 23, 36, 0.75);
  }

  .article-table-wrap th,
  .article-table-wrap td {
    display: block;
    min-width: 0;
    padding: 0.7rem 0.8rem;
    border: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .article-table-wrap tbody tr > :last-child {
    grid-column: 1 / -1;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .article-table-wrap [data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.22rem;
    color: var(--news-green);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .news-masthead h1 {
    font-size: clamp(2.25rem, 11.4vw, 2.8rem);
  }

  .news-card--featured .news-card__media {
    aspect-ratio: 16 / 9;
  }

  .article-header h1 {
    font-size: 1.9rem;
  }

  .article-updated {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card__media img,
  .news-card__action span,
  .rank-cta__action a,
  .rank-cta__arrow,
  .news-masthead__jump span {
    transition: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-rail,
  .rank-cta,
  .article-next,
  .reading-progress,
  .preview-banner,
  .consent-banner {
    display: none !important;
  }

  .news-page,
  .news-page::before {
    background: #fff !important;
    color: #111 !important;
  }

  .article-header {
    padding-top: 1rem;
  }

  .article-header h1,
  .article-content > h2,
  .article-key-facts h2,
  .article-sources h2,
  .article-content > p,
  .article-key-facts li {
    color: #111 !important;
  }

  .article-layout {
    display: block;
    padding: 2rem 0;
  }

  .article-content {
    max-width: none;
  }

  a {
    color: #111 !important;
  }
}
