.page-news {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: clip;
  min-height: 80vh;
}

.page-news a {
  color: inherit;
}

.page-news .news-hero {
  position: relative;
  padding: 48px 0 72px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest) 48%, var(--black) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 0 100%);
}

.page-news .news-hero::after {
  content: "NEWS";
  position: absolute;
  top: 24px;
  right: -8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 112px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
}

.page-news .news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.page-news .news-kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 4px;
  background: var(--gold);
  transform: skew(-24deg);
}

.page-news .news-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1.1;
  margin: 16px 0 18px;
  max-width: 900px;
  letter-spacing: -0.01em;
}

.page-news .news-intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
}

.page-news .news-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.page-news .news-stat {
  background: rgba(0, 0, 0, 0.4);
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-news .news-stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.1;
  color: var(--gold);
}

.page-news .news-stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.page-news .articles-shell {
  display: grid;
  gap: 36px;
  padding: 52px 0 88px;
}

.page-news .articles-main {
  min-width: 0;
  display: grid;
  gap: 56px;
}

.page-news .articles-sidebar {
  min-width: 0;
  display: grid;
  gap: 28px;
  align-content: start;
}

.page-news .section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  color: var(--text-light);
}

.page-news .featured-grid {
  display: grid;
  gap: 20px;
}

.page-news .featured-card {
  display: flex;
  flex-direction: column;
  background: var(--forest);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-news .featured-card:hover,
.page-news .featured-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.page-news .featured-image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--forest);
}

.page-news .featured-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1;
}

.page-news .featured-tag {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-news .featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}

.page-news .featured-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-news .featured-link {
  margin-top: auto;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.page-news .featured-link:hover,
.page-news .featured-link:focus {
  border-color: var(--gold);
}

.page-news .filter-section {
  scroll-margin-top: 24px;
}

.page-news .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .filter-chip {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.65);
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.page-news .filter-chip:hover,
.page-news .filter-chip:focus {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.page-news .timeline-section {
  scroll-margin-top: 24px;
}

.page-news .article-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 26px;
  display: grid;
  gap: 22px;
}

.page-news .article-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--emerald) 60%, transparent 100%);
}

.page-news .timeline-item {
  position: relative;
  scroll-margin-top: 24px;
}

.page-news .timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.page-news .timeline-card {
  position: relative;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(212, 175, 55, 0.8);
  padding: 22px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.page-news .timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}

.page-news .timeline-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .timeline-index {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(212, 175, 55, 0.7);
}

.page-news .timeline-category {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-news .timeline-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.page-news .timeline-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-news .timeline-excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-news .timeline-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.page-news .timeline-link:hover,
.page-news .timeline-link:focus {
  border-color: var(--gold);
}

.page-news .articles-more {
  margin-top: 30px;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

.page-news .articles-more a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-news .articles-more a:hover,
.page-news .articles-more a:focus {
  border-bottom-color: var(--gold);
}

.page-news .subscribe-panel {
  background: var(--forest);
  border: 1px solid rgba(212, 175, 55, 0.55);
  transition: box-shadow 0.3s, border-color 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 0 100%);
}

.page-news .subscribe-panel:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.page-news .subscribe-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.page-news .subscribe-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin: 0;
}

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

.page-news .subscribe-control {
  display: flex;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: var(--black);
}

.page-news .subscribe-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text-light);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.page-news .subscribe-input::placeholder {
  color: rgba(168, 184, 176, 0.7);
}

.page-news .subscribe-button {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--gradient-gold-green);
  color: var(--text-light);
  border: 0;
  padding: 0 18px;
  cursor: pointer;
}

.page-news .subscribe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .subscribe-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.page-news .subscribe-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-news .subscribe-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(168, 184, 176, 0.75);
}

.page-news .subscribe-action {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.page-news .subscribe-action:hover,
.page-news .subscribe-action:focus {
  color: var(--text-light);
}

.page-news .mobile-topic {
  display: grid;
  background: linear-gradient(145deg, var(--dark-green) 0%, var(--forest) 60%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  overflow: hidden;
}

.page-news .mobile-topic-image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.page-news .mobile-topic-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.page-news .mobile-topic-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin: 0;
}

.page-news .mobile-topic-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-news .mobile-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.page-news .mobile-topic-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.page-news .mobile-topic-link:hover,
.page-news .mobile-topic-link:focus {
  border-color: var(--gold);
}

.page-news .mobile-topic-link--primary {
  background: var(--gold);
  color: var(--black);
  padding: 9px 14px;
  border-bottom: 0;
  letter-spacing: 0.04em;
}

.page-news .mobile-topic-link--primary:hover,
.page-news .mobile-topic-link--primary:focus {
  background: var(--text-light);
  color: var(--black);
}

.page-news .topic-tags {
  padding: 20px;
  background: var(--forest);
  border-left: 3px solid var(--gold);
}

.page-news .topic-tags-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  margin: 0 0 14px;
}

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

.page-news .topic-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  text-decoration: none;
}

.page-news .topic-tag:hover,
.page-news .topic-tag:focus {
  color: var(--gold);
  border-color: var(--gold);
}

@media (min-width: 640px) {
  .page-news .news-title {
    font-size: 48px;
  }

  .page-news .news-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-news .featured-card:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .page-news .news-title {
    font-size: 64px;
  }

  .page-news .news-intro {
    font-size: 18px;
  }

  .page-news .news-stats {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-news .articles-shell {
    grid-template-columns: minmax(0, 1fr) 368px;
    align-items: start;
  }

  .page-news .articles-sidebar {
    position: sticky;
    top: 24px;
  }

  .page-news .featured-card:first-child {
    flex-direction: row;
  }

  .page-news .featured-card:first-child .featured-image {
    width: 46%;
    height: auto;
    min-height: 320px;
  }

  .page-news .featured-card:first-child .featured-body {
    width: 54%;
  }

  .page-news .featured-card:not(:first-child) .featured-body {
    padding: 20px;
  }

  .page-news .mobile-topic-image {
    height: 360px;
  }
}
