.page-news {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

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

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

.page-news .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.page-news .news-hero__copy,
.page-news .news-patches-block,
.page-news .news-calendar-block {
  min-width: 0;
}

.page-news .breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.page-news .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--muted);
}

.page-news .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.page-news .breadcrumb a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.page-news .news-hero {
  position: relative;
  padding: 40px 20px 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 26, 79, .9), transparent 52%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg) 72%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0 34px, rgba(182, 255, 60, .03) 34px 36px);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 0;
  bottom: 0;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(182, 255, 60, .07), transparent);
  transform: skewX(-12deg);
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.page-news .news-hero__kicker {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-news .news-hero__title {
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-style: italic;
}

.page-news .news-hero__title::after {
  content: "";
  display: block;
  width: clamp(90px, 16vw, 160px);
  height: 10px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: skewX(-18deg);
}

.page-news .news-hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  border-left: 3px solid var(--green);
  padding-left: 18px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.85;
  color: var(--muted);
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-news .news-hero__aside {
  position: relative;
  max-width: 430px;
  padding: 22px 22px 22px 26px;
  background: rgba(182, 255, 60, .06);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
}

.page-news .news-hero__aside-index {
  position: absolute;
  top: -14px;
  right: 12px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 44, .45);
  pointer-events: none;
}

.page-news .news-hero__aside-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-news .news-hero__aside-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.page-news .news-hero__stripe {
  position: relative;
  z-index: 2;
  height: 12px;
  margin-top: -20px;
  background: linear-gradient(90deg, var(--green) 0 20%, var(--orange) 20% 34%, transparent 34% 100%);
  transform: skewY(-1.4deg);
}

.page-news .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.page-news .section-title {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-style: italic;
}

.page-news .section-head__note {
  max-width: 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-news .news-today {
  position: relative;
  padding: 56px 0 28px;
  background: var(--jade);
}

.page-news .news-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 16px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

.page-news .news-scroll::-webkit-scrollbar {
  height: 6px;
}

.page-news .news-scroll::-webkit-scrollbar-thumb {
  background: var(--green);
}

.page-news .news-scroll::-webkit-scrollbar-track {
  background: rgba(11, 7, 22, .5);
}

.page-news .news-card {
  position: relative;
  flex: 0 0 min(86%, 420px);
  scroll-snap-align: start;
  padding: 20px;
  background: rgba(11, 7, 22, .66);
  border-top: 4px solid var(--green);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 107, 44, .28), 0 18px 34px rgba(0, 0, 0, .3);
}

.page-news .news-card__media {
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

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

.page-news .news-card__body {
  padding-top: 16px;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-news .news-card__time {
  font-size: 12px;
  color: var(--muted);
}

.page-news .news-card__title {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
}

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

.page-news .news-card__spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 0;
}

.page-news .news-card__spec div {
  padding: 10px 12px;
  background: rgba(182, 255, 60, .06);
  border: 1px solid rgba(182, 255, 60, .12);
}

.page-news .news-card__spec dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.page-news .news-card__spec dd {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--green);
}

.page-news .news-card__spec div:last-child dd {
  color: var(--orange);
}

.page-news .news-note {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.page-news .news-library {
  padding: 76px 0;
  background: linear-gradient(160deg, rgba(20, 16, 42, .4) 0%, var(--bg) 42%);
}

.page-news .news-library .section-head {
  margin-bottom: 40px;
}

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

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, rgba(182, 255, 60, .08) 100%);
}

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

.page-news .news-entry__dot {
  position: absolute;
  left: -23px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 44, .16);
}

.page-news .news-entry:first-child .news-entry__dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(182, 255, 60, .18);
}

.page-news .news-entry__num {
  position: absolute;
  top: 18px;
  right: 8px;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 44, .35);
  pointer-events: none;
}

.page-news .news-entry__card {
  position: relative;
  padding: 20px 18px;
  background: rgba(20, 16, 42, .72);
  border: 1px solid rgba(182, 255, 60, .14);
  border-left: 4px solid var(--green);
}

.page-news .news-entry__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .news-entry__tag {
  font-size: 13px;
  color: var(--muted);
}

.page-news .news-entry__title {
  margin: 12px 0 0;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 900;
}

.page-news .news-entry__media {
  margin-top: 16px;
  aspect-ratio: 16 / 10;
  max-width: 560px;
}

.page-news .news-entry__summary {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 720px;
}

.page-news .news-entry__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.page-news .news-entry__spec div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(11, 7, 22, .6);
  font-size: 13px;
}

.page-news .news-entry__spec dt {
  color: var(--muted);
  font-size: 12px;
}

.page-news .news-entry__spec dd {
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.page-news .news-entry__spec .is-sync {
  color: var(--green);
}

.page-news .news-more {
  margin-top: 4px;
  padding: 14px 16px;
  background: rgba(20, 16, 42, .5);
  border: 1px dashed var(--border);
}

.page-news .news-more summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
  list-style: none;
}

.page-news .news-more summary::-webkit-details-marker {
  display: none;
}

.page-news .news-more summary::before {
  content: "+";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.page-news .news-more[open] summary::before {
  content: "–";
}

.page-news .news-more ul {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.page-news .news-more li {
  font-size: 14px;
  color: var(--muted);
}

.page-news .news-guides {
  padding: 72px 0;
  background: var(--wine);
}

.page-news .news-guides__grid {
  gap: 18px;
}

.page-news .news-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: rgba(11, 7, 22, .62);
  border-bottom: 4px solid var(--orange);
  transition: transform .22s ease, box-shadow .22s ease;
}

.page-news .news-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .28);
}

.page-news .news-guide-card__media {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

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

.page-news .news-guide-card__label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-news .news-guide-card__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
}

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

.page-news .guide-list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 232, 232, .85);
}

.page-news .guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
}

.page-news .news-bottom {
  padding: 72px 0;
  background: var(--indigo);
}

.page-news .news-bottom__grid {
  gap: 40px;
}

.page-news .news-patch__media {
  max-width: 600px;
  aspect-ratio: 3 / 2;
  margin: 24px 0 20px;
}

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

.page-news .news-patch-list li {
  padding: 16px;
  background: rgba(11, 7, 22, .66);
  border-left: 3px solid var(--green);
}

.page-news .news-patch-list .tag {
  display: inline-flex;
  margin-bottom: 8px;
}

.page-news .news-patch-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 242, 255, .82);
}

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

.page-news .news-calendar__list li {
  display: grid;
  grid-template-columns: 3.5em 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(11, 7, 22, .66);
  border-left: 3px solid rgba(182, 255, 60, .3);
}

.page-news .news-calendar__day {
  font-weight: 900;
  color: var(--green);
  font-size: 14px;
}

.page-news .news-calendar__list strong {
  font-size: 15px;
}

.page-news .news-calendar__list em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
  font-size: 14px;
}

.page-news .news-calendar__list small {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--muted);
}

.page-news .news-calendar__highlight {
  border-left-color: var(--orange);
  background: rgba(255, 107, 44, .12);
}

.page-news .news-calendar__highlight .news-calendar__day {
  color: var(--orange);
}

.page-news .news-stats {
  padding: 40px 20px;
  background: rgba(20, 16, 42, .4);
  border-block: 1px solid var(--border);
}

.page-news .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-news .news-stat {
  text-align: center;
}

.page-news .stat-num {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--green);
  font-style: italic;
  letter-spacing: -.02em;
}

.page-news .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.page-news .news-cue {
  padding: 64px 20px;
  text-align: center;
}

.page-news .news-cue .container {
  max-width: 760px;
}

.page-news .news-cue__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.page-news .news-cue__desc {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.page-news .news-cue__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .page-news .breadcrumb {
    padding-top: 32px;
    padding-inline: 32px;
  }

  .page-news .news-hero {
    padding: 64px 32px 110px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr);
    gap: 48px;
    align-items: end;
  }

  .page-news .news-hero__aside {
    margin-bottom: 12px;
  }

  .page-news .news-scroll {
    gap: 22px;
    padding: 10px 32px 28px;
  }

  .page-news .news-card {
    flex-basis: min(54%, 460px);
  }

  .page-news .news-today {
    padding-top: 72px;
  }

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

  .page-news .news-timeline {
    padding-left: 40px;
  }

  .page-news .news-entry__dot {
    left: -34px;
  }

  .page-news .news-entry__card {
    padding: 26px 28px;
  }

  .page-news .news-entry__num {
    right: 24px;
  }

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

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

  .page-news .news-guide-card {
    padding: 22px;
  }

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

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

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

  .page-news .news-cue {
    padding: 96px 32px;
  }
}

@media (min-width: 1120px) {
  .page-news .news-scroll {
    padding-inline: max(32px, calc((100vw - 1200px) / 2 + 32px));
  }
}
