.page-news {
  padding-bottom: 80px;
}

.page-news .page-heading {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(24px, 4vw, 40px);
  position: relative;
}

.page-news .page-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-green));
  transform: skewX(-45deg);
}

.page-news .page-heading__eyebrow {
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--c-green);
}

.page-news .page-heading h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--c-text);
  margin: 16px 0 18px;
  max-width: 780px;
}

.page-news .page-heading__desc {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0;
}

.page-news .page-heading__desc strong {
  color: var(--c-orange);
  font-weight: 700;
}

.page-news .status-strip {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: rgba(18, 42, 74, 0.6);
  padding: 12px 0;
}

.page-news .status-strip__track {
  display: flex;
  gap: 28px;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  margin-bottom: -4px;
  scrollbar-width: none;
}

.page-news .status-strip__track::-webkit-scrollbar {
  display: none;
}

.page-news .status-strip__item {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.page-news .status-strip__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-green);
  transform: skewX(-20deg);
}

.page-news .status-strip__item.is-live {
  color: var(--c-green);
}

.page-news .reports-section {
  padding-top: clamp(32px, 6vw, 64px);
}

.page-news .reports-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-news .filter-rail__inner {
  position: sticky;
  top: 24px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.page-news .filter-rail__label {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 14px;
  font-family: var(--font-data);
}

.page-news .filter-rail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-news .filter-rail__link {
  display: block;
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  color: var(--c-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.page-news .filter-rail__link:hover {
  border-color: var(--c-orange);
  color: var(--c-text);
}

.page-news .filter-rail__link.is-active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-blue-deep);
  font-weight: 700;
}

.page-news .filter-rail__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}

.page-news .filter-rail__note .data-strong {
  font-family: var(--font-data);
  font-size: 1.6rem;
  color: var(--c-orange);
}

.page-news .filter-rail__note p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--c-muted);
}

.page-news .reports-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.page-news .section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--c-text);
  margin: 0;
}

.page-news .report-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-news .report-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--c-orange);
  transition: width 0.3s var(--ease);
  z-index: 2;
}

.page-news .report-card--cyan::before {
  background: var(--c-green);
}

.page-news .report-card:hover {
  border-color: rgba(255, 122, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.page-news .report-card:hover::before {
  width: 6px;
}

.page-news .report-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news .report-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .report-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .report-card__round {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--c-muted);
}

.page-news .report-card__round strong {
  color: var(--c-green);
  font-weight: 600;
}

.page-news .report-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.35;
  color: var(--c-text);
  margin: 2px 0 0;
}

.page-news .report-score {
  font-family: var(--font-data);
  font-style: normal;
  font-weight: 700;
  color: var(--c-orange);
  margin: 0 4px;
}

.page-news .report-card__summary {
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.page-news .report-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}

.page-news .report-card__time {
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--c-green-ok);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-news .report-card__time::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green-ok);
}

.page-news .report-card__details {
  font-size: 0.85rem;
}

.page-news .report-card__details summary {
  color: var(--c-orange);
  cursor: pointer;
  font-size: 0.82rem;
  user-select: none;
  transition: opacity 0.2s;
  font-family: var(--font-data);
  letter-spacing: 0.04em;
}

.page-news .report-card__details summary:hover {
  opacity: 0.75;
}

.page-news .report-card__details p {
  color: var(--c-muted);
  line-height: 1.7;
  font-size: 0.88rem;
  margin: 10px 0 0;
}

.page-news .data-banner {
  position: relative;
  margin: clamp(48px, 8vw, 80px) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.page-news .data-banner__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.page-news .data-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 42, 94, 0.92) 0%, rgba(10, 42, 94, 0.35) 60%, rgba(13, 27, 42, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 28px;
  flex-wrap: wrap;
  color: var(--c-text);
  font-size: 0.88rem;
}

.page-news .data-banner__stat {
  font-family: var(--font-data);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-green);
}

.page-news .data-banner__divider {
  color: var(--c-muted);
}

.page-news .changes-section {
  padding-top: 8px;
}

.page-news .changes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 24px;
}

.page-news .changes-visual {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 16px;
}

.page-news .changes-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news .changes-visual__caption {
  padding: 12px 18px 0;
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

.page-news .timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-orange) 0%, rgba(255, 122, 0, 0.5) 50%, rgba(13, 27, 42, 0.2) 100%);
  border-radius: 2px;
}

.page-news .timeline__item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 22px;
}

.page-news .timeline__item:last-child {
  margin-bottom: 0;
}

.page-news .timeline__dot {
  position: absolute;
  left: 9px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-orange);
  border: 2px solid var(--c-blue-deep);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.page-news .timeline__item:hover .timeline__dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.3);
}

.page-news .timeline__item.is-pinned .timeline__dot {
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.25);
}

.page-news .timeline__item:hover .timeline__dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(198, 255, 0, 0.3);
}

.page-news .timeline__card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-news .timeline__card:hover {
  border-color: rgba(198, 255, 0, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-news .timeline__card h3 {
  margin: 10px 0 6px;
  font-size: 1.05rem;
  color: var(--c-text);
  font-weight: 700;
  font-family: var(--font-display);
}

.page-news .timeline__card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.page-news .subscribe-section {
  padding-top: clamp(48px, 8vw, 80px);
}

.page-news .subscribe-panel {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.page-news .subscribe-panel__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-news .subscribe-panel__content {
  padding: 28px;
}

.page-news .subscribe-panel__desc {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 12px 0 20px;
  max-width: 480px;
}

.page-news .subscribe-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .subscribe-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-size: 0.95rem;
}

.page-news .subscribe-steps__num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-orange);
  color: var(--c-blue-deep);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  transform: skewX(-10deg);
}

.page-news .subscribe-panel__cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--c-orange);
  color: var(--c-blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-news .subscribe-panel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.page-news .help-entry {
  padding-top: clamp(32px, 5vw, 56px);
}

.page-news .help-entry__inner {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(198, 255, 0, 0.08));
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .help-entry__title {
  font-weight: 700;
  color: var(--c-text);
  font-size: 1.05rem;
  margin: 0 0 6px;
  font-family: var(--font-display);
}

.page-news .help-entry__desc {
  color: var(--c-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.7;
}

.page-news .help-entry__link {
  color: var(--c-green);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  font-family: var(--font-data);
  font-size: 0.92rem;
}

.page-news .help-entry__link:hover {
  color: var(--c-orange);
}

@media (min-width: 768px) {
  .page-news .reports-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }

  .page-news .filter-rail__list {
    flex-direction: column;
  }

  .page-news .filter-rail__link {
    width: 100%;
  }

  .page-news .report-card {
    grid-template-columns: 300px 1fr;
  }

  .page-news .report-card__thumb {
    height: 100%;
    min-height: 220px;
  }

  .page-news .changes-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-news .changes-visual img {
    height: 240px;
  }

  .page-news .subscribe-panel {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .page-news .subscribe-panel__img {
    height: 100%;
    min-height: 300px;
  }

  .page-news .data-banner__img {
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .page-news .reports-layout {
    grid-template-columns: 280px 1fr;
  }
}
