.page-news {
  --news-accent: #00FF88;
  --news-purple: #7B2FFF;
  background: var(--c-deep-space);
  color: var(--c-white);
  overflow-x: hidden;
}

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

.page-news .breadcrumbs {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  margin-bottom: 24px;
}

.page-news .breadcrumbs a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.page-news .news-hero {
  position: relative;
  padding: 32px 0 72px;
  background: linear-gradient(135deg, var(--c-deep-space) 0%, var(--c-dark-violet) 60%, rgba(123, 47, 255, .35) 130%);
  overflow: hidden;
}

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

.page-news .news-hero__grid {
  display: grid;
  gap: 36px;
  padding-top: 16px;
}

.page-news .news-hero__kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-neon-green);
  margin: 0 0 14px;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 6.5vw, 56px);
  line-height: 1.08;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .01em;
  color: var(--c-white);
  max-width: 900px;
  margin: 0 0 18px;
}

.page-news .news-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  margin: 0 0 28px;
}

.page-news .news-hero__lead::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-electric-purple), var(--c-neon-green));
  margin-bottom: 18px;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .news-hero__stat {
  padding: 14px 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-2);
  min-width: 108px;
}

.page-news .news-hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  color: var(--c-neon-green);
}

.page-news .news-hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .06em;
}

.page-news .news-hero__index {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-3);
  padding: 24px;
  align-self: start;
}

.page-news .news-hero__index-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--c-neon-green);
  font-weight: 700;
  margin: 0 0 14px;
}

.page-news .news-hero__index-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  counter-reset: newsIdx;
}

.page-news .news-hero__index-list li {
  counter-increment: newsIdx;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.page-news .news-hero__index-list li:last-child {
  border-bottom: none;
}

.page-news .news-hero__index-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--c-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.page-news .news-hero__index-list a::before {
  content: counter(newsIdx, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--c-electric-purple);
  background: rgba(123, 47, 255, .15);
  border-radius: var(--radius-1);
  padding: 4px 6px;
  line-height: 1;
}

.page-news .news-hero__index-list a:hover {
  color: var(--c-neon-green);
  padding-left: 4px;
}

.page-news .news-hero__note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
  border-left: 3px solid var(--c-neon-green);
  padding-left: 12px;
  margin: 0;
}

.page-news .news-hero__skew {
  position: absolute;
  right: -50px;
  bottom: -30px;
  width: 240px;
  height: 100px;
  background: rgba(123, 47, 255, .4);
  transform: rotate(-7deg);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 12% 100%);
  pointer-events: none;
}

.page-news .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(11, 27, 61, .08);
  padding-bottom: 16px;
}

.page-news .section-heading__tag {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-electric-purple);
  margin: 0;
  order: 2;
}

.page-news .section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  color: var(--c-ink);
  order: 1;
}

.page-news .news-reports {
  background: var(--c-warm-paper);
  color: var(--c-ink);
  padding: 56px 0 72px;
}

.page-news .news-reports__layout {
  display: grid;
  gap: 28px;
}

.page-news .report-featured {
  background: var(--c-white);
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.page-news .report-featured__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--c-deep-space);
}

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

.page-news .report-featured:hover .report-featured__media img {
  transform: scale(1.03);
}

.page-news .report-featured__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-news .report-featured__tag {
  align-self: flex-start;
  display: inline-block;
  transform: skewX(-8deg);
  background: var(--c-electric-purple);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.page-news .report-featured h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--c-ink);
}

.page-news .report-featured__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(20, 20, 20, .72);
  margin-bottom: 18px;
}

.page-news .report-featured__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(20, 20, 20, .08);
  padding-top: 14px;
}

.page-news .report-featured__stat {
  font-size: 13px;
  font-weight: 600;
  color: rgba(20, 20, 20, .65);
  background: rgba(123, 47, 255, .08);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.page-news .report-list {
  display: grid;
  gap: 16px;
}

.page-news .report-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  background: var(--c-white);
  border-radius: var(--radius-2);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(11, 27, 61, .06);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-news .report-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--c-electric-purple);
}

.page-news .report-item__index {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--c-electric-purple);
  background: rgba(123, 47, 255, .1);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news .report-item h4 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--c-ink);
}

.page-news .report-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(20, 20, 20, .6);
}

.page-news .news-topic {
  background: linear-gradient(130deg, var(--c-deep-space) 0%, var(--c-dark-violet) 75%, rgba(123, 47, 255, .5) 160%);
  color: var(--c-white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-news .news-topic::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, .16) 0%, transparent 70%);
  pointer-events: none;
}

.page-news .news-topic .l-container {
  position: relative;
  z-index: 1;
}

.page-news .news-topic__layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-news .news-topic .section-heading {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.page-news .news-topic .section-heading__tag {
  color: var(--c-neon-green);
}

.page-news .news-topic .section-heading h2 {
  color: var(--c-white);
}

.page-news .news-topic__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 24px;
}

.page-news .news-topic__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-topic__list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.65;
}

.page-news .news-topic__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--c-neon-green);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-news .news-topic__note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--c-electric-purple);
  border-radius: 0 var(--radius-1) var(--radius-1) 0;
  padding: 12px 16px;
  margin: 0 0 24px;
}

.page-news .news-topic__media {
  position: relative;
}

.page-news .news-topic__media::after {
  content: "";
  position: absolute;
  inset: -16px;
  background: rgba(123, 47, 255, .12);
  border-radius: var(--radius-3);
  transform: rotate(2deg);
  z-index: 0;
}

.page-news .news-topic__media-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-3);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow-card);
}

.page-news .news-calendar {
  background: var(--c-warm-paper);
  color: var(--c-ink);
  padding: 64px 0 72px;
}

.page-news .news-calendar__layout {
  display: grid;
  gap: 40px;
}

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

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-electric-purple) 0%, var(--c-neon-green) 100%);
  opacity: .3;
}

.page-news .timeline__item {
  position: relative;
  padding: 0 0 28px 34px;
}

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

.page-news .timeline__marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-deep-space);
  border: 4px solid var(--c-electric-purple);
  box-shadow: 0 0 0 4px rgba(123, 47, 255, .15);
}

.page-news .timeline__card {
  background: var(--c-white);
  border-radius: var(--radius-2);
  padding: 22px;
  box-shadow: 0 6px 20px rgba(11, 27, 61, .06);
  border-left: 4px solid transparent;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.page-news .timeline__item:hover .timeline__card {
  border-left-color: var(--c-neon-green);
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.page-news .timeline__phase {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-electric-purple);
  margin: 0 0 8px;
}

.page-news .timeline__card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--c-ink);
}

.page-news .timeline__card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20, 20, 20, .65);
  margin: 0 0 12px;
}

.page-news .timeline__status {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-deep-space);
  background: var(--c-neon-green);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.page-news .news-calendar__hint {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(20, 20, 20, .6);
  background: rgba(123, 47, 255, .06);
  border-radius: var(--radius-2);
  border-left: 3px solid var(--c-electric-purple);
  padding: 14px 18px;
  margin: 24px 0 0;
}

.page-news .news-calendar__aside {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-news .news-calendar__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-card);
  max-height: 360px;
}

.page-news .report-entry {
  position: relative;
  background: linear-gradient(135deg, var(--c-deep-space) 0%, var(--c-dark-violet) 100%);
  color: var(--c-white);
  border-radius: var(--radius-3);
  padding: 28px;
  overflow: hidden;
}

.page-news .report-entry::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: var(--c-electric-purple);
  opacity: .18;
  transform: rotate(45deg);
  border-radius: 32px;
}

.page-news .report-entry__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-neon-green);
  margin: 0 0 8px;
}

.page-news .report-entry h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--c-white);
}

.page-news .report-entry p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.page-news .report-entry .btn--ghost {
  border-color: rgba(255, 255, 255, .4);
  color: var(--c-white);
  background: transparent;
  position: relative;
  z-index: 1;
}

.page-news .report-entry .btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--c-neon-green);
}

.page-news .news-announcements {
  background: var(--c-deep-space);
  color: var(--c-white);
  padding: 64px 0 72px;
}

.page-news .news-announcements .section-heading {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.page-news .news-announcements .section-heading__tag {
  color: var(--c-neon-green);
}

.page-news .news-announcements .section-heading h2 {
  color: var(--c-white);
}

.page-news .news-announcements__grid {
  display: grid;
  gap: 24px;
}

.page-news .news-announcements__card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-3);
  padding: 26px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.page-news .news-announcements__card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.page-news .news-announcements__card--primary {
  border-color: rgba(123, 47, 255, .55);
  background: linear-gradient(135deg, rgba(123, 47, 255, .22) 0%, rgba(255, 255, 255, .04) 100%);
}

.page-news .news-announcements__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-2);
  margin-bottom: 18px;
}

.page-news .news-announcements__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-deep-space);
  background: var(--c-neon-green);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.page-news .news-announcements__card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--c-white);
}

.page-news .news-announcements__card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  margin: 0 0 16px;
}

.page-news .news-announcements__card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-neon-green);
  text-decoration: none;
}

.page-news .news-announcements__card a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.6fr 0.8fr;
    align-items: start;
  }

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

  .page-news .report-featured__body {
    padding: 28px;
  }

  .page-news .news-topic__layout {
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
  }

  .page-news .news-calendar__layout {
    grid-template-columns: 1fr 0.92fr;
    gap: 48px;
    align-items: start;
  }

  .page-news .news-calendar__img {
    max-height: none;
  }

  .page-news .news-announcements__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-news .news-announcements__card--primary {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
  }

  .page-news .news-announcements__card--primary .news-announcements__img {
    margin-bottom: 0;
  }
}

@media (min-width: 1100px) {
  .page-news .news-hero {
    padding: 48px 0 96px;
  }

  .page-news .news-reports__layout {
    grid-template-columns: 1.35fr 0.9fr;
  }

  .page-news .news-announcements__grid {
    grid-template-columns: 1.15fr 0.9fr 0.95fr;
  }

  .page-news .news-announcements__card--primary {
    grid-column: auto;
    display: block;
  }

  .page-news .news-announcements__card--primary .news-announcements__img {
    margin-bottom: 18px;
  }
}
