.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 0;
  color: var(--c-cream);
  background:
    radial-gradient(circle at 18% 12%, rgba(90, 79, 207, .28), transparent 30%),
    radial-gradient(circle at 88% 30%, rgba(255, 107, 53, .18), transparent 28%),
    var(--c-space);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(192, 200, 216, .5) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(192, 200, 216, .28) 1px, transparent 1.5px);
  background-size: 150px 150px, 220px 220px;
  background-position: 0 0, 70px 90px;
  opacity: .55;
  pointer-events: none;
}

.page-news .news-hero__top {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 12px 0 30px;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--c-silver);
}

.page-news .breadcrumb a {
  color: var(--c-silver);
  text-decoration: none;
  transition: color .2s ease;
}

.page-news .breadcrumb a:hover {
  color: var(--c-orange);
}

.page-news .breadcrumb__sep {
  color: var(--c-orange);
}

.page-news .section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-news .page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.16;
  color: var(--c-cream);
  letter-spacing: .01em;
}

.page-news .news-hero__lead {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-silver);
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.page-news .news-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-silver);
}

.page-news .meta-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .16);
}

.page-news .news-hero__visual {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 1px solid rgba(192, 200, 216, .24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-news .news-hero__visual img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 600px) {
  .page-news .news-hero__visual img {
    height: 340px;
  }
}

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

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: 36px 0 80px;
}

.page-news .news-rail {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(192, 200, 216, .22);
  background: rgba(255, 255, 255, .02);
  padding: 14px 16px;
}

.page-news .news-rail__label {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-news .news-rail__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.page-news .news-rail__link {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid rgba(192, 200, 216, .3);
  font-size: 14px;
  color: var(--c-silver);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.page-news .news-rail__link:hover,
.page-news .news-rail__link.is-active {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: rgba(255, 107, 53, .08);
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    padding-top: 56px;
  }

  .page-news .news-rail {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    align-self: start;
    border: 0;
    background: transparent;
    padding: 8px 0 0 18px;
  }

  .page-news .news-rail__label {
    margin-bottom: 18px;
    padding-left: 16px;
  }

  .page-news .news-rail__list {
    position: relative;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding-left: 16px;
  }

  .page-news .news-rail__list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-orange), var(--c-purple), rgba(192, 200, 216, .25));
  }

  .page-news .news-rail__link {
    position: relative;
    display: block;
    padding: 10px 14px;
    border: 0;
    color: var(--c-silver);
  }

  .page-news .news-rail__link::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-space);
    border: 2px solid var(--c-silver);
    transform: translateY(-50%);
    transition: border-color .2s, background .2s;
  }

  .page-news .news-rail__link:hover,
  .page-news .news-rail__link.is-active {
    background: transparent;
  }

  .page-news .news-rail__link:hover::before,
  .page-news .news-rail__link.is-active::before {
    border-color: var(--c-orange);
    background: var(--c-orange);
  }
}

.page-news .doc-section {
  scroll-margin-top: calc(var(--header-h) + 18px);
  padding-top: 16px;
}

.page-news .doc-section + .doc-section {
  margin-top: 64px;
  border-top: 1px solid rgba(192, 200, 216, .18);
  padding-top: 52px;
}

.page-news .doc-section:target {
  animation: newsSectionFlash .9s ease;
}

@keyframes newsSectionFlash {
  0% {
    box-shadow: inset 0 0 0 2px rgba(255, 107, 53, .6);
  }
  100% {
    box-shadow: inset 0 0 0 2px transparent;
  }
}

.page-news .section-head {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--c-orange);
}

.page-news .section-eyebrow {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--c-orange);
}

.page-news .section-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--c-cream);
}

.page-news .section-desc {
  margin: 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-silver);
}

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

.page-news .news-timeline__item {
  position: relative;
  padding: 0 0 26px 22px;
}

.page-news .news-timeline__item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 22px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(192, 200, 216, .4), rgba(192, 200, 216, .08));
}

.page-news .news-timeline__item:last-child::before {
  display: none;
}

.page-news .news-timeline__node {
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-space);
  border: 3px solid var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .12);
}

.page-news .news-timeline__item--purple .news-timeline__node {
  border-color: var(--c-purple);
}

.page-news .news-timeline__item--yellow .news-timeline__node {
  border-color: var(--c-yellow);
}

.page-news .news-timeline__item--red .news-timeline__node {
  border-color: var(--c-red);
}

.page-news .news-card {
  position: relative;
  background: var(--c-cream);
  color: var(--c-ink);
  padding: 18px 18px 16px;
  border-radius: 2px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .26);
}

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

.page-news .news-card__period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #5a6478;
}

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

.page-news .news-card__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #3c4156;
}

.page-news .news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-orange);
  text-decoration: none;
}

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

.page-news .tag--yellow {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: transparent;
}

.page-news .tag--purple {
  background: var(--c-purple);
  color: var(--c-cream);
  border-color: transparent;
}

.page-news .tag--red {
  background: var(--c-red);
  color: var(--c-cream);
  border-color: transparent;
}

.page-news .tag--orange {
  background: var(--c-orange);
  color: var(--c-cream);
  border-color: transparent;
}

.page-news .feature-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(192, 200, 216, .16);
  padding: 18px;
}

.page-news .feature-pair__media {
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.page-news .feature-pair__media img {
  display: block;
  width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: cover;
}

.page-news .feature-pair__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-news .feature-pair__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--c-cream);
}

.page-news .feature-pair__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-silver);
}

@media (min-width: 820px) {
  .page-news .feature-pair {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    padding: 24px;
  }

  .page-news .feature-pair--swap .feature-pair__media {
    order: 2;
  }

  .page-news .feature-pair__media img {
    max-height: 360px;
  }
}

.page-news .data-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.page-news .data-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(11, 27, 61, .5);
  border: 1px solid rgba(192, 200, 216, .2);
  padding: 10px 12px;
}

.page-news .data-list strong {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-orange);
  white-space: nowrap;
}

.page-news .data-list span {
  font-size: 13px;
  color: var(--c-silver);
}

.page-news .changelog {
  margin-top: 20px;
  border-top: 1px solid rgba(192, 200, 216, .16);
  padding-top: 22px;
}

.page-news .changelog h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-cream);
}

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

.page-news .changelog__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: rgba(11, 27, 61, .38);
  border-left: 2px solid var(--c-orange);
  padding: 12px 14px;
}

.page-news .changelog__flag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-yellow);
}

.page-news .changelog__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-silver);
}

.page-news .member-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, rgba(90, 79, 207, .16), rgba(11, 27, 61, .5));
  border: 1px solid rgba(192, 200, 216, .18);
  padding: 16px;
}

.page-news .member-panel__media {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
}

.page-news .member-panel__media img {
  display: block;
  width: 100%;
  max-height: 260px;
  height: auto;
  object-fit: cover;
}

.page-news .member-panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-news .member-panel__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
  color: var(--c-cream);
}

.page-news .member-panel__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-silver);
}

.page-news .member-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.page-news .stat-block {
  background: rgba(11, 27, 61, .4);
  border: 1px solid rgba(192, 200, 216, .18);
  padding: 10px 8px;
  text-align: center;
}

.page-news .stat-block strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-orange);
}

.page-news .stat-block span {
  font-size: 12px;
  color: var(--c-silver);
}

@media (min-width: 820px) {
  .page-news .member-panel {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    padding: 24px;
  }

  .page-news .member-panel__media img {
    max-height: 320px;
  }
}

.page-news .member-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-news .member-steps__item {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(192, 200, 216, .14);
  padding: 16px;
}

.page-news .member-steps__num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-space-deep);
  background: var(--c-orange);
}

.page-news .member-steps__body h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--c-cream);
}

.page-news .member-steps__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-silver);
}

@media (min-width: 820px) {
  .page-news .member-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.page-news .member-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  background: rgba(255, 209, 102, .06);
  border-top: 1px dashed rgba(192, 200, 216, .24);
  border-left: 3px solid var(--c-yellow);
  padding: 16px 18px;
}

.page-news .member-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-silver);
}

.page-news .route-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.page-news .route-box {
  background: rgba(11, 27, 61, .4);
  border: 1px solid rgba(192, 200, 216, .25);
  padding: 14px;
}

.page-news .route-box--local {
  border-color: rgba(255, 107, 53, .5);
}

.page-news .route-box__label {
  display: inline-flex;
  margin-bottom: 8px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--c-yellow);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-yellow);
}

.page-news .route-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-silver);
}

.page-news .route-history {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
}

.page-news .route-history__year {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-news .route-history p {
  margin: 0;
  font-size: 14px;
  color: var(--c-silver);
}

.page-news .text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news .text-link:hover {
  color: var(--c-yellow);
}

.page-news .button {
  margin-top: 4px;
}

.page-news .insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.page-news .insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--c-cream);
  color: var(--c-ink);
  padding: 28px 22px 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.page-news .insight-card__index {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: rgba(26, 26, 46, .16);
}

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

.page-news .insight-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #3c4156;
}

@media (min-width: 760px) {
  .page-news .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .page-news .insight-card:nth-child(even) {
    transform: translateY(28px) rotate(.6deg);
  }

  .page-news .insight-card:nth-child(odd) {
    transform: translateY(4px) rotate(-.4deg);
  }
}

.page-news img {
  max-width: 100%;
}
