.page-news {
  --news-feature-bg: linear-gradient(135deg, #0A1E3C 0%, #071528 100%);
  --news-feature-border: rgba(255, 107, 53, 0.6);
  --news-rule-width: 3px;
  background: var(--color-bg);
  color: var(--color-ink);
  overflow-x: clip;
}

.page-news .container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.page-news a {
  color: var(--color-link);
  text-decoration: none;
}

.page-news a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news__topbar {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-news__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.page-news__shortcut {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.page-news__shortcut:hover {
  color: var(--color-orange);
}

.page-news__lead {
  background: var(--news-feature-bg);
  color: #ffffff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-news__lead::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.page-news__lead::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
  pointer-events: none;
}

.page-news__lead .container {
  position: relative;
  z-index: 2;
}

.page-news__lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news__lead-copy .section-eyebrow {
  color: var(--color-orange);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-news__lead-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.page-news__lead-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34em;
  margin: 0 0 24px;
}

.page-news__lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news__lead-actions .btn {
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-news__lead-actions .btn-accent {
  background: var(--color-orange);
  color: #ffffff;
  border: none;
}

.page-news__lead-actions .btn-accent:hover {
  background: var(--color-orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.32);
  text-decoration: none;
}

.page-news__lead-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.page-news__lead-actions .btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
  text-decoration: none;
}

.page-news__lead-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-news__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.page-news__stat .data-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
}

.page-news__stat .data-number--orange {
  color: var(--color-orange);
}

.page-news__stat .data-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  display: block;
  margin-top: 6px;
}

.news-feature {
  padding: 36px 0 16px;
}

.news-feature__card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--news-feature-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.news-feature__media {
  position: relative;
  min-height: 0;
}

.news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.news-feature__body {
  padding: 24px 24px 28px;
  color: #ffffff;
}

.news-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.news-feature__body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.news-feature__body p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 18px;
}

.news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.news-feature__meta .data-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.news-feature__body .btn-sm {
  background: var(--color-orange);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.news-feature__body .btn-sm:hover {
  background: var(--color-orange-deep);
  transform: translateY(-2px);
  text-decoration: none;
}

.news-reports {
  padding: 48px 0 16px;
}

.section-header--split {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-header--split .section-eyebrow {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--color-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.section-header--split .section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.section-header--split > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
  max-width: 34em;
}

.news-reports__intro {
  border-left: var(--news-rule-width) solid var(--color-orange);
  padding-left: 14px;
}

.news-reports__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.news-report-card {
  position: relative;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.news-report-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.news-report-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
}

.news-report-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-report-card:hover .news-report-card__media img {
  transform: scale(1.03);
}

.news-report-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
}

.news-report-card__body::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 22px;
  border-top: 2px solid var(--color-orange);
  border-right: 2px solid var(--color-orange);
  opacity: 0.5;
}

.news-report-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-right: 24px;
}

.news-report-card__round {
  font-size: 12px;
  color: var(--color-muted);
}

.news-report-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.news-report-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

.news-report-card .match-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px dashed var(--color-border);
  padding-top: 12px;
}

.news-report-card .match-row .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-ink);
  line-height: 1.6;
}

.news-analysis {
  padding: 48px 0 16px;
}

.news-analysis__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.news-analysis__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-analysis-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-analysis-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.news-analysis-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-analysis-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-analysis-card__content {
  padding: 22px 22px 24px;
  position: relative;
}

.news-analysis-card__number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(10, 30, 60, 0.08);
  line-height: 1;
  pointer-events: none;
}

.news-analysis-card__tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.news-analysis-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  padding-right: 32px;
  letter-spacing: -0.01em;
}

.news-analysis-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 10px;
}

.news-analysis-card p:last-child {
  margin-bottom: 0;
}

.news-analysis__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-analysis__side-card {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.news-analysis__side-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.news-analysis__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-analysis__stats li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.news-analysis__stats .data-number {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  min-width: 2.2em;
}

.news-analysis__stats .data-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}

.news-analysis__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.news-analysis__links li {
  border-bottom: 1px solid var(--color-border);
}

.news-analysis__links li:last-child {
  border-bottom: none;
}

.news-analysis__links a {
  display: block;
  padding: 11px 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.news-analysis__links a:hover {
  color: var(--color-orange);
  padding-left: 10px;
  text-decoration: none;
}

.news-archive {
  padding: 48px 0 16px;
}

.news-archive__banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16 / 4;
  border: 1px solid var(--color-border);
}

.news-archive__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news-archive__group {
  padding: 18px 20px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
}

.news-archive__group:hover {
  box-shadow: var(--shadow-hover);
}

.news-archive__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.news-archive__group-head .data-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
}

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

.news-archive__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
}

.news-archive__list li:last-child {
  border-bottom: none;
}

.news-archive__list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.5;
  transition: color 0.2s ease;
  flex: 1;
}

.news-archive__list a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.news-archive__list .data-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  white-space: nowrap;
}

.news-bottom {
  padding: 48px 0 56px;
}

.news-bottom__card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.news-bottom__text h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.news-bottom__text p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.news-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-bottom__actions .btn {
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.news-bottom__actions .btn-accent {
  background: var(--color-orange);
  color: #ffffff;
  border: none;
}

.news-bottom__actions .btn-accent:hover {
  background: var(--color-orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.28);
  text-decoration: none;
}

.news-bottom__actions .btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-ink);
}

.news-bottom__actions .btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
  text-decoration: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-ink);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.tag--orange {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--color-orange-deep);
}

.tag--cyan {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.35);
  color: #026d82;
}

.tag--purple {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  color: #6d28d9;
}

.tag--dark {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .page-news [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .page-news [data-reveal][data-revealed],
  .page-news [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .page-news__lead {
    padding: 72px 0 80px;
  }

  .page-news__lead-grid {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 40px;
  }

  .page-news__lead-stats {
    grid-template-columns: 1fr;
  }

  .page-news__stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 16px 18px;
  }

  .page-news__stat .data-number {
    font-size: 22px;
  }

  .page-news__stat .data-label {
    margin-top: 0;
    font-size: 13px;
  }

  .news-reports__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-archive__groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .news-bottom__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 36px;
  }
}

@media (min-width: 960px) {
  .news-feature {
    padding: 56px 0 24px;
  }

  .news-feature__card {
    grid-template-columns: 7fr 5fr;
    min-height: 420px;
  }

  .news-feature__body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .news-feature__body h2 {
    font-size: 28px;
  }

  .news-feature__body p {
    font-size: 15px;
  }

  .news-reports {
    padding: 64px 0 24px;
  }

  .section-header--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-header--split > p {
    max-width: 36em;
    text-align: right;
  }

  .news-analysis {
    padding: 64px 0 24px;
  }

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

  .news-analysis__side {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }

  .news-analysis-card {
    grid-template-columns: 7fr 9fr;
  }

  .news-analysis-card__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
  }

  .news-analysis-card__content {
    padding: 28px 28px 32px;
  }

  .news-archive {
    padding: 64px 0 24px;
  }

  .news-archive__groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-bottom {
    padding: 64px 0 72px;
  }
}

@media (min-width: 1200px) {
  .news-reports__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .news-report-card__body {
    padding: 22px 22px 24px;
  }

  .news-archive__groups {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
