.page-news {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, #FBF8F2 45%, var(--cream) 100%);
}

.page-news .breadcrumb {
  padding-top: 24px;
}

.page-news .news-hero {
  position: relative;
  padding: 48px 0 40px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 64%;
  background: linear-gradient(135deg, var(--terracotta), var(--sand-gold));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.14;
  border-radius: 0 0 0 28px;
  pointer-events: none;
}

.page-news .news-hero__title {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(34px, 7vw, 68px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  margin: 14px 0 20px;
  max-width: 980px;
  text-wrap: balance;
}

.page-news .news-hero__lead {
  position: relative;
  font-size: 17px;
  line-height: 1.85;
  color: var(--stone-gray);
  max-width: 720px;
  margin: 0 0 24px;
}

.page-news .news-hero__tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-feature-media {
  margin: 8px 0 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
}

.page-news .news-feature-media img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 34%;
}

.page-news .news-feature-media figcaption {
  padding: 14px 22px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.9);
  background: var(--green-deep);
}

.page-news .news-layout {
  margin-bottom: 72px;
}

.page-news .news-layout__main {
  min-width: 0;
}

.page-news .news-filters {
  background: var(--white);
  border: 1px solid rgba(74, 124, 99, 0.22);
  border-radius: 24px;
  padding: 28px 22px;
  margin-bottom: 36px;
  box-shadow: 0 12px 32px -24px rgba(21, 46, 36, 0.28);
}

.page-news .news-filters__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.page-news .news-filters__head p {
  font-size: 14px;
  color: var(--metal-gray);
  margin: 0;
}

.page-news .news-filters__tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .filter-radio {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .filter-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(74, 124, 99, 0.35);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .filter-label:hover {
  border-color: var(--green-light);
}

.page-news .filter-radio:checked + .filter-label {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

.page-news .filter-radio:focus-visible + .filter-label {
  outline: 2px solid var(--vibrant-orange);
  outline-offset: 2px;
}

.page-news .news-filters:has(#filter-release:checked) ~ .news-listing .news-card[data-category]:not([data-category="release"]),
.page-news .news-filters:has(#filter-match:checked) ~ .news-listing .news-card[data-category]:not([data-category="match"]),
.page-news .news-filters:has(#filter-service:checked) ~ .news-listing .news-card[data-category]:not([data-category="service"]) {
  display: none;
}

.page-news .news-listing__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.page-news .news-listing__head p {
  font-size: 14px;
  color: var(--metal-gray);
  margin: 0;
}

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

.page-news .news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(74, 124, 99, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-news .news-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 18px 40px -28px rgba(21, 46, 36, 0.35);
  transform: translateY(-3px);
}

.page-news .news-card__media {
  display: block;
  overflow: hidden;
}

.page-news .news-card__media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.45s ease;
}

.page-news .news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.page-news .news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .news-card__time,
.page-news .news-card__readtime {
  font-size: 12px;
  color: var(--metal-gray);
}

.page-news .news-card__time {
  font-family: var(--font-mono);
}

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.page-news .news-card__title a {
  color: var(--green-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-card__title a:hover {
  color: var(--vibrant-orange);
}

.page-news .news-card__excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--stone-gray);
  margin: 0 0 16px;
  flex: 1;
}

.page-news .news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--vibrant-orange);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.page-news .news-card__more:hover {
  color: var(--green-deep);
  gap: 10px;
}

.page-news .news-digest {
  background: linear-gradient(160deg, var(--green-deep), var(--dark-green));
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  color: var(--cream);
  margin-top: 48px;
}

.page-news .news-digest .eyebrow {
  color: var(--sand-gold);
}

.page-news .news-digest .section-heading {
  color: var(--cream);
  margin-bottom: 16px;
}

.page-news .news-digest .section-heading__num {
  color: var(--sand-gold);
}

.page-news .news-digest img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 20px;
}

.page-news .news-digest__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.88);
  margin: 0 0 16px;
}

.page-news .news-digest__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.14);
}

.page-news .news-digest__list li {
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.page-news .news-digest__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px;
  color: rgba(245, 241, 234, 0.92);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .news-digest__list a:hover {
  color: var(--sand-gold);
  padding-left: 6px;
}

.page-news .news-digest__list a::after {
  content: "→";
  color: var(--sand-gold);
  font-weight: 400;
}

.page-news .news-timeline {
  position: relative;
  border-top: 1px solid rgba(74, 124, 99, 0.24);
  padding: 64px 0 72px;
  overflow: hidden;
}

.page-news .news-timeline::before {
  content: "TRACK";
  position: absolute;
  top: 14px;
  right: -10px;
  font-family: var(--font-head);
  font-size: clamp(84px, 18vw, 190px);
  line-height: 1;
  color: rgba(31, 74, 56, 0.07);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.page-news .news-timeline__head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 36px;
}

.page-news .news-timeline__head p {
  font-size: 15px;
  color: var(--metal-gray);
  max-width: 420px;
  margin: 0;
}

.page-news .news-timeline__track {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-timeline__item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  padding: 24px 22px;
  border-left: 4px solid var(--sand-gold);
  box-shadow: 0 10px 28px -20px rgba(21, 46, 36, 0.22);
}

.page-news .news-timeline__period {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-news .news-timeline__item h3 {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.2;
  color: var(--green-deep);
  margin: 0 0 10px;
}

.page-news .news-timeline__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-gray);
  margin: 0;
}

.page-news .news-subscribe {
  position: relative;
  overflow: hidden;
}

.page-news .news-subscribe > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-subscribe__overlay {
  position: relative;
  background: linear-gradient(95deg, rgba(21, 46, 36, 0.94), rgba(31, 74, 56, 0.82));
  padding: 56px 24px;
}

.page-news .news-subscribe__overlay .eyebrow {
  color: var(--sand-gold);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-news .news-subscribe__overlay .section-heading {
  color: var(--cream);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.page-news .news-subscribe__overlay .section-heading__num {
  color: var(--sand-gold);
}

.page-news .news-subscribe__overlay p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 241, 234, 0.86);
  width: 100%;
  max-width: 1200px;
  margin: 12px auto 24px;
}

.page-news .news-subscribe__control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin: 24px auto;
}

.page-news .news-subscribe__control input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.98);
  color: var(--stone-gray);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.page-news .news-subscribe__control input::placeholder {
  color: var(--metal-gray);
}

.page-news .news-subscribe__control input:focus {
  outline: 2px solid var(--vibrant-orange);
  outline-offset: 2px;
  border-color: transparent;
}

.page-news .news-subscribe__note {
  font-size: 12px;
  color: rgba(245, 241, 234, 0.62);
  text-align: center;
  margin: 12px auto 0;
}

@media (min-width: 768px) {
  .page-news .news-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-news .news-feature-media img {
    height: 440px;
  }

  .page-news .news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
    align-items: start;
  }

  .page-news .news-layout__aside {
    position: sticky;
    top: 32px;
  }

  .page-news .news-digest {
    margin-top: 0;
  }

  .page-news .news-timeline__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
  }

  .page-news .news-timeline__item {
    flex: none;
  }
}
