.page-news {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.page-news .news-hero {
  position: relative;
  padding: calc(var(--header-height) + 28px) 0 32px;
  background:
    radial-gradient(900px 360px at 82% 0%, rgba(255, 107, 0, 0.18), transparent 62%),
    linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 78%);
  overflow: hidden;
}

.page-news .news-hero__crumb {
  margin: 0 0 28px;
}

.page-news .news-hero__top {
  display: grid;
  gap: 12px;
}

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

.page-news .news-hero__tag {
  display: inline-block;
  margin-bottom: 14px;
}

.page-news .news-hero__titlebox h1 {
  font-family: var(--font-heading);
  font-size: var(--font-h1);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.page-news .news-hero__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--color-text-muted);
  line-height: 1.7;
  align-self: end;
}

.page-news .news-hero__media {
  margin-top: 28px;
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.page-news .news-hero__slants {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 80px;
  pointer-events: none;
}

.page-news .news-hero__slants span {
  position: absolute;
  left: -20px;
  width: 150%;
  height: 54px;
  background: rgba(255, 107, 0, 0.14);
  transform: rotate(-6deg);
}

.page-news .news-hero__slants span:last-child {
  top: 26px;
  background: rgba(255, 158, 69, 0.07);
}

.page-news .news-timeline {
  position: relative;
  padding: 56px 0 64px;
}

.page-news .news-timeline__header {
  margin-bottom: 28px;
}

.page-news .news-timeline__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

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

.page-news .timeline-item {
  position: relative;
  margin-top: 16px;
  padding: 28px 20px 28px 72px;
  background: linear-gradient(120deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 4px 28px 4px 4px;
  overflow: hidden;
}

.page-news .timeline-item:nth-child(even) {
  background: linear-gradient(120deg, rgba(30, 58, 95, 0.55) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.page-news .timeline-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, rgba(255, 107, 0, 0) 100%);
  z-index: 0;
}

.page-news .timeline-item:last-child::before {
  bottom: 0;
}

.page-news .timeline-item__index {
  position: absolute;
  left: 16px;
  top: 24px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.16);
}

.page-news .timeline-item__body {
  position: relative;
  z-index: 1;
}

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

.page-news .timeline-item__round {
  font-size: var(--font-caption);
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}

.page-news .timeline-item__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  margin: 0 0 8px;
}

.page-news .timeline-item__title a {
  color: var(--color-text-light);
  text-decoration: none;
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: left 100%;
  transition: background-size 0.25s ease;
}

.page-news .timeline-item__title a:hover,
.page-news .timeline-item__title a:focus-visible {
  background-size: 100% 2px;
  color: #FFFFFF;
}

.page-news .timeline-item__desc {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 62ch;
}

.page-news .news-feature {
  padding: 56px 0;
  position: relative;
}

.page-news .news-feature--alt {
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.85) 0%, rgba(10, 27, 61, 0.9) 100%);
}

.page-news .news-feature--compact {
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.06) 0%, rgba(5, 15, 35, 0.4) 100%);
  padding-bottom: 72px;
}

.page-news .news-feature__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-news .news-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.page-news .news-feature__kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.page-news .news-feature__copy h2 {
  font-family: var(--font-heading);
  font-size: var(--font-h2);
  line-height: 1.02;
  margin: 0 0 14px;
  text-transform: uppercase;
  max-width: 14ch;
}

.page-news .news-feature__copy p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 8px;
}

.page-news .news-feature__list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
}

.page-news .news-feature__list li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--color-text-light);
  line-height: 1.5;
  position: relative;
}

.page-news .news-feature__list li:last-child {
  border-bottom: 0;
}

.page-news .news-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  transform: translateY(-50%) rotate(45deg);
}

.page-news .news-cta {
  padding: 24px 0 72px;
}

.page-news .news-cta__inner {
  padding: 32px;
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(120deg, rgba(30, 58, 95, 0.5) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.page-news .news-cta__title {
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  line-height: 1.1;
  margin: 0 0 8px;
}

.page-news .news-cta__desc {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: calc(var(--header-height) + 48px) 0 64px;
  }

  .page-news .news-hero__top {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: end;
  }

  .page-news .news-hero__lead {
    padding-bottom: 10px;
  }

  .page-news .news-hero__media {
    margin-top: 44px;
  }

  .page-news .news-hero__media img {
    clip-path: polygon(4% 0, 100% 0, 100% 84%, 0 96%);
  }

  .page-news .news-timeline {
    padding: 80px 0 96px;
  }

  .page-news .timeline-item {
    margin-top: 20px;
    padding: 36px 40px 36px 100px;
    border-radius: 6px 44px 6px 6px;
  }

  .page-news .timeline-item:nth-child(even) {
    margin-left: 4%;
  }

  .page-news .timeline-item::before {
    left: 32px;
  }

  .page-news .timeline-item__index {
    left: 20px;
    top: 30px;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .page-news .news-feature {
    padding: 96px 0;
  }

  .page-news .news-feature__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .page-news .news-feature__grid--reverse .news-feature__media {
    order: 2;
  }

  .page-news .news-feature__copy h2 {
    max-width: none;
  }

  .page-news .news-cta {
    padding: 24px 0 96px;
  }

  .page-news .news-cta__inner {
    padding: 40px 48px;
  }
}
