.page-news {
  --news-gap: 20px;
  --news-pad: 16px;
  background: linear-gradient(180deg, #1F2326 0%, #1B1E21 100%);
  color: var(--color-cream);
}

.page-news .journal-hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 24px;
}

.page-news .journal-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-terra) 0 120px, var(--color-line) 120px 100%);
}

.page-news .journal-hero-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .journal-hero-copy {
  max-width: 780px;
}

.page-news .breadcrumb {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-dim);
}

.page-news .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-news .breadcrumb li + li::before {
  content: "/";
  color: var(--color-moss-dark);
  font-family: var(--font-mono);
}

.page-news .breadcrumb a {
  color: var(--color-text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.page-news .breadcrumb a:hover {
  border-color: var(--color-terra);
  color: var(--color-cream);
}

.page-news .eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--color-terra);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-news .journal-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.page-news .journal-hero .lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-soft);
  margin: 0 0 14px;
}

.page-news .hero-brief {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-dim);
  margin: 0;
  max-width: 640px;
  border-left: 2px solid var(--color-moss-dark);
  padding-left: 14px;
}

.page-news .journal-hero-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-sm);
}

.page-news .journal-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 62%, rgba(255, 106, 0, .08));
}

.page-news .journal-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-news .tag-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--color-moss-dark);
  color: var(--color-text-soft);
  background: rgba(74, 85, 70, .12);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.page-news .tag-link:hover {
  border-color: var(--color-terra);
  color: var(--color-cream);
  transform: translateY(-1px);
}

.page-news .tag-icon {
  font-family: var(--font-mono);
  color: var(--color-terra);
  font-size: 11px;
}

.page-news .section {
  padding: 48px 0 8px;
}

.page-news .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.page-news .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: .04em;
}

.page-news .section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.015em;
}

.page-news .section-heading p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 680px;
}

.page-news .section-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 130, 85, .4);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity .2s ease, border-color .2s ease;
}

.page-news .section-cta:hover {
  border-color: var(--color-terra);
  opacity: .85;
}

.page-news .report-section {
  padding-top: 44px;
}

.page-news .report-grid {
  display: flex;
  flex-direction: column;
  gap: var(--news-gap);
  margin-top: 28px;
}

.page-news .report-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.page-news .report-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--color-moss-dark);
}

.page-news .report-card-live {
  background: var(--color-surface-2);
  border-left: 3px solid var(--color-orange);
}

.page-news .report-figure {
  position: relative;
  margin: 0;
  background: var(--color-blue);
  overflow: hidden;
}

.page-news .report-figure::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 16px;
  width: 84px;
  height: 12px;
  background: var(--color-terra);
  transform: rotate(-18deg);
  opacity: .9;
  z-index: 1;
}

.page-news .report-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 60%, rgba(255, 106, 0, .08));
}

.page-news .report-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .report-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 20px;
  flex: 1;
}

.page-news .report-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-news .report-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: .04em;
  white-space: nowrap;
}

.page-news .report-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.page-news .report-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0;
}

.page-news .report-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-moss-dark);
}

.page-news .report-stats div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.page-news .report-stats dt {
  color: var(--color-text-dim);
  font-size: 12px;
}

.page-news .report-stats dd {
  font-family: var(--font-mono);
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.page-news .report-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 130, 85, .35);
  align-self: flex-start;
  transition: border-color .2s ease, opacity .2s ease;
}

.page-news .report-link:hover {
  border-color: var(--color-terra);
  opacity: .85;
}

.page-news .report-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--color-moss-dark);
}

.page-news .metric {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  padding: 10px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
}

.page-news .metric b {
  font-size: 22px;
  color: var(--color-cream);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-news .journal-more {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--color-moss-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-text-dim);
}

.page-news .league-section {
  background: linear-gradient(180deg, #1A1F22 0%, #262B30 100%);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.page-news .league-classify {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-news .league-zone {
  border-left: 2px solid var(--color-moss-dark);
  padding-left: 18px;
}

.page-news .league-zone h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--color-cream);
}

.page-news .league-zone h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

.page-news .league-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .league-chip {
  font-size: 14px;
  color: var(--color-text-soft);
  text-decoration: none;
  border: 1px solid var(--color-moss-dark);
  padding: 8px 14px;
  background: rgba(122, 139, 111, .06);
  transition: all .2s ease;
}

.page-news .league-chip:hover {
  border-color: var(--color-terra);
  color: var(--color-cream);
  background: rgba(232, 130, 85, .08);
  transform: translateY(-2px);
}

.page-news .league-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
}

.page-news .expert-section {
  padding-top: 48px;
}

.page-news .expert-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-news .expert-figure {
  margin: 0;
  border: 1px solid var(--color-line);
  background: var(--color-blue);
  position: relative;
}

.page-news .expert-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .expert-figure figcaption {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--color-text-soft);
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  line-height: 1.6;
}

.page-news .expert-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .expert-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-news .expert-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--color-moss-dark);
}

.page-news .expert-monogram {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  color: var(--color-terra);
  font-family: var(--font-mono);
  font-size: 18px;
  border: 1px solid var(--color-terra);
}

.page-news .expert-copy h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
}

.page-news .expert-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0 0 10px;
}

.page-news .expert-work {
  font-size: 12px;
  color: var(--color-text-dim);
  margin: 0;
}

.page-news .expert-work a {
  color: var(--color-terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 130, 85, .35);
}

.page-news .expert-work a:hover {
  border-color: var(--color-terra);
}

.page-news .expert-register {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(43, 61, 79, .65), rgba(31, 35, 38, .95));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .expert-register p {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.page-news .update-section {
  padding-top: 48px;
}

.page-news .update-wrap {
  margin-top: 32px;
}

.page-news .update-item {
  position: relative;
  padding: 0 0 28px 26px;
}

.page-news .update-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--color-terra);
  transform: rotate(45deg);
}

.page-news .update-item::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--color-line);
}

.page-news .update-item:last-child::after {
  display: none;
}

.page-news .update-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.page-news .update-version {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: .02em;
}

.page-news .update-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
}

.page-news .update-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 720px;
}

.page-news .update-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.page-news .journal-trust {
  padding-top: 48px;
  padding-bottom: 56px;
}

.page-news .journal-trust .trust-statement {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.page-news .journal-trust p {
  margin: 0;
  max-width: 720px;
  line-height: 1.8;
  font-size: 14px;
  color: var(--color-text-soft);
}

.page-news .journal-quicknav {
  display: none;
  position: fixed;
  z-index: 80;
}

@media (min-width: 640px) {
  .page-news {
    --news-pad: 20px;
  }

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

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

  .page-news .report-metrics {
    margin-top: auto;
  }
}

@media (min-width: 960px) {
  .page-news .journal-hero-top {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
  }

  .page-news .journal-hero-figure {
    margin-top: 0;
  }

  .page-news .report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .page-news .report-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: stretch;
  }

  .page-news .report-card-featured .report-figure {
    height: 100%;
    min-height: 260px;
  }

  .page-news .report-card-featured .report-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-news .expert-wrap {
    grid-template-columns: 480px 1fr;
    gap: 32px;
    align-items: start;
  }

  .page-news .expert-figure {
    position: sticky;
    top: calc(var(--header-h, 64px) + 24px);
  }
}

@media (min-width: 1280px) {
  .page-news .journal-quicknav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    top: calc(var(--header-h, 64px) + 24px);
    left: 50%;
    transform: translateX(calc(-50% - 680px));
  }

  .page-news .journal-quicknav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-decoration: none;
    color: var(--color-text-dim);
    padding: 8px 12px;
    background: rgba(31, 35, 38, .82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-left: 2px solid var(--color-moss-dark);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
  }

  .page-news .journal-quicknav a:hover {
    color: var(--color-cream);
    border-left-color: var(--color-terra);
    background: var(--color-surface);
  }

  .page-news .qn-index {
    color: var(--color-terra);
    font-size: 11px;
  }
}
