.page-news {
  background: var(--paper);
  color: var(--ink);
}

.page-news .section-head__idx {
  color: var(--steel);
  font-size: 12px;
  letter-spacing: .08em;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #0E3B2E 0%, #0A2A21 54%, #175C45 100%);
  color: var(--paper);
  padding: clamp(40px, 7vw, 88px) 0 clamp(30px, 4.5vw, 52px);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 360px;
  height: 360px;
  background: var(--cyan);
  opacity: .07;
  transform: rotate(28deg);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(42%, 420px);
  height: 3px;
  background: var(--orange);
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-hero .eyebrow {
  color: var(--cyan);
}

.page-news .news-hero__title {
  margin: 16px 0 0;
  font-size: clamp(38px, 8.2vw, 104px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -.02em;
}

.page-news .news-hero__grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(24px, 4vw, 44px);
}

.page-news .news-hero__lead {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.85;
  color: rgba(244, 241, 232, .78);
}

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

.page-news .news-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 14px;
  border-left: 1px solid rgba(61, 242, 208, .35);
}

.page-news .news-hero__stats .metric {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cyan);
}

.page-news .news-hero__stats .metric-label {
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(244, 241, 232, .6);
}

.page-news .news-hero__media {
  position: relative;
  z-index: 1;
  margin: clamp(30px, 5vw, 52px) auto 0;
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: clamp(170px, 32vw, 330px);
  object-fit: cover;
  border: 1px solid rgba(61, 242, 208, .28);
}

/* ---------- 动态列表 ---------- */
.page-news .tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.page-news .tabs-bar .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--steel);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-news .tabs-bar .tag:hover {
  border-color: var(--green-tactic);
  color: var(--green-deep);
}

.page-news .tabs-bar .tag.is-active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cyan);
}

.page-news .feed {
  display: grid;
  border-top: 1px solid var(--line);
}

.page-news .news-item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px) 0 clamp(18px, 2.4vw, 26px) 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}

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

.page-news .news-item:hover {
  background: rgba(23, 92, 69, .045);
}

.page-news .news-item:hover::before {
  transform: scaleY(1);
}

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

.page-news .chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  color: var(--green-tactic);
}

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

.page-news .news-item__title {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.page-news .news-item__title a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--green-tactic), var(--green-tactic));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-news .news-item__title a:hover {
  color: var(--green-deep);
  background-size: 100% 1px;
}

.page-news .news-item__body {
  margin: 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.8;
  color: #3A4245;
}

.page-news .news-item__foot {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--steel);
}

/* ---------- 专题 ---------- */
.page-news .topic-layout {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.page-news .topic-media {
  margin: 0;
}

.page-news .topic-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.page-news .topic-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .topic-item {
  background: var(--paper);
  padding: clamp(20px, 2.6vw, 30px);
  transition: background var(--dur) var(--ease);
}

.page-news .topic-item:hover {
  background: var(--white);
}

.page-news .topic-item__idx {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--orange);
}

.page-news .topic-item__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 500;
  line-height: 1.45;
}

.page-news .topic-item__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #3A4245;
}

/* ---------- 赛季阶段 ---------- */
.page-news .season-layout {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.page-news .season-track {
  list-style: none;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
}

.page-news .season-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.page-news .season-node {
  position: relative;
  padding-bottom: clamp(26px, 3.5vw, 40px);
}

.page-news .season-node:last-child {
  padding-bottom: 0;
}

.page-news .season-node::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--green-tactic);
  background: var(--paper);
  box-sizing: border-box;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-news .season-node:target::before,
.page-news .season-node:hover::before {
  background: var(--orange);
  border-color: var(--orange);
}

.page-news .season-node__idx {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--steel);
}

.page-news .season-node__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.4;
}

.page-news .season-node__body {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.82;
  color: #3A4245;
}

.page-news .season-figure {
  margin: 0;
}

.page-news .season-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ---------- 版本档案 ---------- */
.page-news .version-figure {
  margin: 0 0 clamp(24px, 4vw, 40px);
}

.page-news .version-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  border: 1px solid var(--line);
}

.page-news .vlist {
  list-style: none;
  margin: 0;
  padding: 1px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .vlist__item {
  background: var(--paper);
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 28px);
}

.page-news .vlist__no {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--green-tactic);
}

.page-news .vlist__title {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.42;
}

.page-news .vlist__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #3A4245;
}

.page-news .vlist__item--now {
  background: var(--green-deep);
  color: var(--paper);
}

.page-news .vlist__item--now .vlist__no {
  color: var(--cyan);
}

.page-news .vlist__item--now .vlist__desc {
  color: rgba(244, 241, 232, .76);
}

.page-news .vlist__badge {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 3px 9px;
  background: var(--orange);
  color: #14181A;
}

/* ---------- 回访提示 ---------- */
.page-news .return-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 5vw, 60px);
}

.page-news .return-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  background: var(--green-tactic);
  opacity: .5;
  transform: rotate(20deg);
}

.page-news .return-panel > * {
  position: relative;
  z-index: 1;
}

.page-news .return-panel .eyebrow {
  color: var(--cyan);
}

.page-news .return-panel__title {
  margin: 14px 0 0;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -.01em;
}

.page-news .return-panel__body {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.82;
  color: rgba(244, 241, 232, .76);
}

.page-news .return-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 32px);
}

.page-news .return-panel .btn--ghost {
  border-color: rgba(244, 241, 232, .4);
  color: var(--paper);
}

.page-news .return-panel .btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
  }

  .page-news .news-hero__stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-news .topic-layout {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .page-news .season-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
  }

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

  .page-news .vlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .vlist__item--now {
    grid-column: 1 / -1;
  }

  .page-news .season-node {
    padding-left: 0;
  }
}
