.page-news {
  --news-rail: 52px;
  background: var(--night);
  color: var(--cream);
  overflow-x: clip;
}

/* ---------- 通用文字 ---------- */
.page-news .news-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
  position: relative;
  padding-left: 14px;
}
.page-news .news-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 3px;
  height: 12px;
  background: var(--orange);
}

.page-news .news-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 6.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0 0 16px;
  max-width: 18ch;
}

.page-news .news-prose {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist);
  margin: 0;
  max-width: 62ch;
}

.page-news .lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mist);
  max-width: 46ch;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  padding: 24px 0 0;
}

.page-news .news-hero__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--grass);
  margin: 22px 0 14px;
}

.page-news .news-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 10.6vw, 92px);
  line-height: 1;
  letter-spacing: -.018em;
  margin: 0 0 20px;
  max-width: 13ch;
}
.page-news .news-hero__title::after {
  content: "";
  display: block;
  width: 78px;
  height: 6px;
  margin-top: 22px;
  background: var(--orange);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-news .news-hero__visual {
  position: relative;
  margin: 44px 0 0;
}
.page-news .news-hero__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 46px;
  background-image:
    linear-gradient(rgba(127, 212, 240, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 240, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-news .news-hero__visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.page-news .news-hero__visual figcaption {
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist);
  padding: 12px var(--gutter) 0;
  max-width: var(--shell-w);
  margin-inline: auto;
}

/* ---------- 条目列表 ---------- */
.page-news .news-stream {
  padding: 62px 0 0;
}
.page-news .news-stream__intro {
  margin-top: 4px;
}

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

.page-news .news-item {
  display: grid;
  grid-template-columns: var(--news-rail) minmax(0, 1fr);
  gap: 0 12px;
  scroll-margin-top: 96px;
}

.page-news .news-item__rail {
  position: relative;
  padding-top: 18px;
  display: flex;
  justify-content: center;
}
.page-news .news-item__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: -26px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(127, 212, 240, .7), rgba(127, 212, 240, .14));
  transform: translateX(-50%);
}
.page-news .news-item:last-child .news-item__rail::before {
  bottom: 46%;
}

.page-news .news-item__round {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--night);
  background: var(--yellow);
  padding: 5px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

.page-news .news-item__card {
  position: relative;
  background: var(--night-2);
  padding: 22px 20px 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  transition: background .32s var(--ease);
}
.page-news .news-item__card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--ice);
  transition: width .3s var(--ease), background .3s var(--ease);
}
.page-news .news-item__card:hover::before,
.page-news .news-item__card:focus-within::before {
  width: 5px;
  background: var(--orange);
}
.page-news .news-item__card--report::before { background: var(--grass); }
.page-news .news-item__card--observe::before { background: var(--yellow); }
.page-news .news-item__card--preview { background: #0c2237; }

.page-news .news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-news .news-item__type {
  display: inline-block;
  padding: 3px 9px 3px 8px;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--night);
  background: var(--ice);
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}
.page-news .news-item__type--report { background: var(--grass); }
.page-news .news-item__type--observe { background: var(--yellow); }
.page-news .news-item__type--roundup { background: var(--cream); }

.page-news .news-item__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.34;
  margin: 0 0 10px;
  color: var(--cream);
}

.page-news .news-item__summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
}

.page-news .news-item__figure {
  margin: 18px 0 0;
}
.page-news .news-item__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-item__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ice);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 212, 240, .42);
  padding-bottom: 2px;
  transition: color .28s var(--ease), border-color .28s var(--ease);
}
.page-news .news-item__link:hover,
.page-news .news-item__link:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

/* ---------- 前瞻 / 战报 区块 ---------- */
.page-news .news-block {
  padding: 66px 0 0;
}
.page-news .news-block--report {
  padding-top: 58px;
}

.page-news .news-block__grid {
  display: grid;
  gap: 34px;
}

.page-news .tick-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.page-news .tick-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--cream);
}
.page-news .tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--grass);
}

.page-news .news-block__side {
  border-top: 1px solid var(--stroke);
  padding-top: 22px;
}

.page-news .news-side-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--cream);
  margin: 0 0 8px;
}

.page-news .side-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
  text-decoration: none;
  color: var(--cream);
}
.page-news .side-row:first-of-type {
  border-top: 1px solid var(--stroke);
}
.page-news .side-row__round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
}
.page-news .side-row__text {
  font-size: 14px;
  line-height: 1.5;
  transition: color .28s var(--ease);
}
.page-news .side-row__time {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
}
.page-news .side-row:hover .side-row__text,
.page-news .side-row:focus-visible .side-row__text {
  color: var(--orange);
}

/* 半场先后 */
.page-news .half-order {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.page-news .half-order__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  align-items: baseline;
  padding: 15px 16px 17px;
  border: 1px solid var(--stroke);
  background: rgba(127, 212, 240, .06);
}
.page-news .half-order__step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--yellow);
}
.page-news .half-order__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--cream);
}
.page-news .half-order__desc {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist);
}

/* 统计块 */
.page-news .stat-blocks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
}
.page-news .stat-block {
  background: var(--night-2);
  padding: 16px 16px 18px;
}
.page-news .stat-block__num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--grass);
  margin-bottom: 6px;
}
.page-news .stat-block__cap {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mist);
}

/* ---------- 赛季观察 ---------- */
.page-news .news-observe {
  padding: 66px 0 0;
}
.page-news .news-observe__intro {
  margin-bottom: 30px;
}

.page-news .observe-grid {
  display: grid;
  gap: 18px;
}

.page-news .observe-card {
  position: relative;
  padding: 22px 20px 24px;
  background: var(--indigo);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.page-news .observe-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 74, .5);
  padding: 3px 8px;
  margin-bottom: 14px;
}
.page-news .observe-card__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.36;
  margin: 0 0 10px;
  color: var(--cream);
}
.page-news .observe-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
}

/* ---------- 轮次回顾 ---------- */
.page-news .news-roundup {
  margin-top: 70px;
  background: var(--teal);
}
.page-news .news-roundup__visual {
  margin: 0;
  position: relative;
}
.page-news .news-roundup__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 47, .25), var(--teal));
  pointer-events: none;
}
.page-news .news-roundup__visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 7 / 3;
  object-fit: cover;
}
.page-news .news-roundup__body {
  padding-top: 34px;
  padding-bottom: 46px;
}

.page-news .roundup-strip {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(199, 211, 221, .22);
}
.page-news .roundup-strip__item {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 6px 16px;
  align-items: baseline;
  background: var(--teal);
  padding: 15px 4px 15px 0;
}
.page-news .roundup-strip__round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}
.page-news .roundup-strip__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream);
}

/* ---------- 更新节奏 ---------- */
.page-news .news-cadence {
  padding: 66px 0 0;
}
.page-news .cadence-track {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
}
.page-news .cadence-track__step {
  background: var(--night-2);
  padding: 20px 18px 24px;
}
.page-news .cadence-track__time {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ice);
  margin-bottom: 10px;
}
.page-news .cadence-track__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--cream);
}
.page-news .cadence-track__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: var(--mist);
}
.page-news .news-cadence__note {
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--mist);
  border-left: 2px solid var(--grass);
  padding-left: 14px;
  max-width: 58ch;
}

/* ---------- 收好这一轮 ---------- */
.page-news .news-keep {
  padding: 66px 0 0;
}
.page-news .news-keep__panel {
  background: var(--wine);
  padding: 30px 22px 36px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.page-news .news-keep__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .news-fade {
  height: 120px;
  background: linear-gradient(to bottom, rgba(10, 26, 47, 0), rgba(10, 26, 47, .92));
}

/* ---------- 平板 ---------- */
@media (min-width: 720px) {
  .page-news {
    --news-rail: 76px;
  }
  .page-news .news-list {
    gap: 32px;
  }
  .page-news .news-item__card {
    padding: 28px 28px 34px;
  }
  .page-news .news-item__title {
    font-size: 22px;
  }
  .page-news .observe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-news .cadence-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-news .news-hero__visual figcaption {
    font-size: 13px;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 960px) {
  .page-news {
    --news-rail: 96px;
  }

  .page-news .news-hero {
    padding-top: 32px;
  }
  .page-news .news-hero__title {
    max-width: 15ch;
  }

  .page-news .news-block__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    column-gap: 56px;
    align-items: start;
  }
  .page-news .news-block__grid--reverse .news-block__copy {
    order: 1;
  }

  .page-news .news-item__card--lead {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-areas:
      "meta  fig"
      "title fig"
      "sum   fig"
      "link  fig";
    column-gap: 30px;
    align-items: start;
  }
  .page-news .news-item__card--lead .news-item__meta { grid-area: meta; }
  .page-news .news-item__card--lead .news-item__title { grid-area: title; }
  .page-news .news-item__card--lead .news-item__summary { grid-area: sum; }
  .page-news .news-item__card--lead .news-item__figure {
    grid-area: fig;
    margin-top: 0;
  }
  .page-news .news-item__card--lead .news-item__link { grid-area: link; }

  .page-news .observe-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .page-news .news-roundup__body {
    padding-top: 42px;
    padding-bottom: 56px;
  }
  .page-news .roundup-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
  }
  .page-news .roundup-strip__item {
    padding: 18px 18px 18px 0;
  }

  .page-news .news-keep__panel {
    padding: 44px 48px 52px;
  }
  .page-news .news-keep__panel .news-prose,
  .page-news .news-keep__panel .news-h2 {
    max-width: 62ch;
  }
}

/* ---------- 减少动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news .news-item__card,
  .page-news .news-item__card::before,
  .page-news .news-item__link,
  .page-news .side-row__text {
    transition: none;
  }
}
