.page-news {
  --news-gap: clamp(22px, 3.4vw, 42px);
  --news-rule: var(--c-line);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4.2vw, 52px) 0 clamp(28px, 4vw, 54px);
  border-bottom: 1px solid var(--news-rule);
  background:
    radial-gradient(120% 118% at 100% 0%, rgba(11, 122, 85, 0.46) 0%, rgba(11, 122, 85, 0) 60%),
    linear-gradient(180deg, var(--c-deep) 0%, var(--c-ink) 82%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: -45%;
  right: -14%;
  width: min(620px, 92vw);
  height: 185%;
  background: linear-gradient(152deg, rgba(198, 249, 78, 0.13), rgba(198, 249, 78, 0) 62%);
  transform: skewX(-16deg);
  pointer-events: none;
}

.page-news .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(18px, 3vw, 34px);
}

.page-news .hero-index {
  border-left: 2px solid var(--c-night);
  padding-left: 16px;
}

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

.page-news .index-list__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--c-slate);
}

.page-news .index-list__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-teal);
  min-width: 58px;
}

.page-news .hero-title {
  font-size: clamp(28px, 6.2vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: var(--c-paper);
  margin: 0 0 18px;
  max-width: 20em;
}

.page-news .hero-lead {
  color: var(--c-slate);
  max-width: 46em;
  margin: 0;
}

.page-news .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

/* ---------- 区块骨架 ---------- */
.page-news .news-block {
  padding: clamp(38px, 6vw, 78px) 0;
  border-bottom: 1px solid rgba(23, 56, 79, 0.6);
}

.page-news .news-block--band {
  background: linear-gradient(180deg, rgba(9, 79, 56, 0.24) 0%, rgba(7, 26, 43, 0) 70%);
}

.page-news .section__desc {
  color: var(--c-slate);
  max-width: 44em;
  margin: 12px 0 0;
}

/* ---------- 本轮更新列表 ---------- */
.page-news .feed {
  list-style: none;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--news-rule);
}

.page-news .feed__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--news-rule);
}

.page-news .feed__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-lime);
}

.page-news .feed__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--c-paper);
  margin: 0 0 6px;
}

.page-news .feed__text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--c-slate);
  margin: 0 0 10px;
}

.page-news .feed__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .feed__link {
  align-self: start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 209, 197, 0.4);
  padding-bottom: 2px;
}

.page-news .feed__link:hover,
.page-news .feed__link:focus-visible {
  color: var(--c-lime);
  border-bottom-color: rgba(198, 249, 78, 0.6);
}

/* ---------- 赛季专题 ---------- */
.page-news .series-hero {
  position: relative;
  overflow: hidden;
  margin: clamp(22px, 3.4vw, 40px) 0 0;
  border-radius: var(--radius-m);
  background: linear-gradient(140deg, var(--c-grass), var(--c-ink));
}

.page-news .series-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
}

.page-news .series-hero__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-paper);
  background: linear-gradient(0deg, rgba(4, 18, 30, 0.94), rgba(4, 18, 30, 0));
}

.page-news .season-band {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(256px, 78%);
  gap: 14px;
  margin-top: clamp(20px, 3vw, 32px);
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter) 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

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

.page-news .season-band::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 999px;
}

.page-news .season-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 230px;
  padding: 20px 20px 22px;
  border-top: 3px solid var(--c-teal);
  border-radius: var(--radius-s);
  background: linear-gradient(160deg, var(--c-panel) 0%, var(--c-ink) 100%);
}

.page-news .season-card__idx {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--c-teal);
}

.page-news .season-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-paper);
  margin: 0;
}

.page-news .season-card__text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--c-slate);
  margin: 0;
}

.page-news .season-card__link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 249, 78, 0.35);
  padding-bottom: 2px;
}

.page-news .season-card__link:hover,
.page-news .season-card__link:focus-visible {
  color: var(--c-paper);
  border-bottom-color: var(--c-paper);
}

/* ---------- 版本日志 ---------- */
.page-news .table-scroll {
  margin-top: clamp(20px, 3vw, 34px);
  overflow-x: auto;
}

.page-news .data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.page-news .data-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-news .data-table th,
.page-news .data-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--news-rule);
  vertical-align: top;
}

.page-news .data-table thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--c-slate);
  border-bottom: 1px solid var(--c-night);
  white-space: nowrap;
}

.page-news .data-table tbody td {
  color: var(--c-slate);
  line-height: 1.7;
}

.page-news .data-table tbody tr:nth-child(odd) td {
  background: rgba(12, 35, 56, 0.55);
}

.page-news .data-table td.ver {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-lime);
  white-space: nowrap;
}

.page-news .data-table td:nth-child(2) {
  white-space: nowrap;
  color: var(--c-teal);
}

/* ---------- 区域专栏 ---------- */
.page-news .region-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 38px) 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .region-row:first-of-type {
  margin-top: clamp(20px, 3vw, 34px);
}

.page-news .region-row:last-of-type {
  border-bottom: 1px solid var(--news-rule);
}

.page-news .region-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: linear-gradient(150deg, var(--c-grass), var(--c-ink));
}

.page-news .region-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}

.page-news .region-row:hover .region-figure img {
  transform: scale(1.02);
}

.page-news .label--teal {
  color: var(--c-teal);
}

.page-news .region-copy__title {
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 800;
  line-height: 1.34;
  color: var(--c-paper);
  margin: 12px 0 10px;
}

.page-news .region-copy__text {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--c-slate);
  margin: 0 0 16px;
}

.page-news .region-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .region-facts li {
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--c-paper);
  padding: 5px 11px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(12, 35, 56, 0.8);
}

/* ---------- 更新次序 ---------- */
.page-news .cadence {
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(18px, 3vw, 32px);
  border-left: 3px solid var(--c-night);
}

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

.page-news .cadence-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px dashed var(--c-line);
}

.page-news .cadence-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-news .cadence-time {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-lime);
}

.page-news .cadence-copy__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
  color: var(--c-paper);
  margin: 0 0 6px;
}

.page-news .cadence-copy__text {
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--c-slate);
  margin: 0;
}

/* ---------- 订阅与回看 ---------- */
.page-news .next-list {
  margin-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--news-rule);
}

.page-news .next-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--news-rule);
  text-decoration: none;
  transition: background var(--dur) var(--ease);
}

.page-news .next-item__idx {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-line);
  transition: color var(--dur) var(--ease);
}

.page-news .next-item__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
  color: var(--c-paper);
  margin: 0 0 5px;
}

.page-news .next-item__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-news .next-item__arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--c-night);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-news .next-item:hover,
.page-news .next-item:focus-visible {
  background: rgba(12, 35, 56, 0.6);
}

.page-news .next-item:hover .next-item__idx,
.page-news .next-item:focus-visible .next-item__idx {
  color: var(--c-lime);
}

.page-news .next-item:hover .next-item__arrow,
.page-news .next-item:focus-visible .next-item__arrow {
  color: var(--c-lime);
  transform: translateX(4px);
}

/* ---------- 断点 ---------- */
@media (min-width: 720px) {
  .page-news .season-band {
    grid-auto-columns: minmax(280px, 320px);
  }

  .page-news .feed__item {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 6px 22px;
    align-items: start;
  }

  .page-news .feed__time {
    padding-top: 3px;
  }
}

@media (min-width: 940px) {
  .page-news .hero-grid {
    grid-template-columns: 236px minmax(0, 1fr);
    align-items: start;
  }

  .page-news .feed__item {
    grid-template-columns: 112px minmax(0, 1fr) 152px;
    padding: 22px 14px 24px 18px;
    gap: 6px 26px;
  }

  .page-news .feed__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--c-lime);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--dur) var(--ease);
  }

  .page-news .feed__item:hover,
  .page-news .feed__item:focus-within {
    background: rgba(12, 35, 56, 0.62);
  }

  .page-news .feed__item:hover::before,
  .page-news .feed__item:focus-within::before {
    transform: scaleY(1);
  }

  .page-news .feed__link {
    justify-self: end;
    text-align: right;
    margin-top: 2px;
  }

  .page-news .region-row {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: center;
  }

  .page-news .region-row--flip .region-figure {
    order: 2;
  }

  .page-news .region-row--flip .region-copy {
    order: 1;
  }

  .page-news .next-item {
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    gap: 22px;
    padding: 26px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .region-figure img,
  .page-news .next-item,
  .page-news .next-item__idx,
  .page-news .next-item__arrow,
  .page-news .feed__item::before {
    transition: none;
  }

  .page-news .region-row:hover .region-figure img {
    transform: none;
  }

  .page-news .next-item:hover .next-item__arrow,
  .page-news .next-item:focus-visible .next-item__arrow {
    transform: none;
  }
}
