.page-news {
  --news-rule: rgba(16, 24, 40, .14);
  --news-rule-dark: rgba(247, 249, 252, .2);
}

/* ---------- 01 首屏 ---------- */
.page-news .news-hero__grid {
  margin-top: clamp(24px, 4vw, 44px);
  align-items: end;
}

.page-news .news-hero__lead {
  min-width: 0;
}

.page-news .news-hero__lead h1 {
  margin: 12px 0 0;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ice);
}

.page-news .news-hero__dek {
  margin: 18px 0 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247, 249, 252, .8);
}

.page-news .news-hero__fig {
  margin: 0;
  min-width: 0;
}

.page-news .news-hero__fig .figure__cap {
  color: rgba(247, 249, 252, .62);
}

.page-news .news-hero__stats {
  list-style: none;
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--news-rule-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 42px;
}

.page-news .news-hero__stats li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: rgba(247, 249, 252, .68);
}

.page-news .news-hero__num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--arena);
}

/* ---------- 02 栏目说明 ---------- */
.page-news .news-cats .section-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-news .news-cats__rail {
  display: flex;
  gap: 14px;
  padding: 2px 2px 20px;
  scroll-snap-type: x proximity;
}

.page-news .cat-card {
  flex: 0 0 min(78vw, 306px);
  scroll-snap-align: start;
  background: var(--ice);
  border-left: 2px solid var(--arena);
  padding: 24px;
  clip-path: var(--cut-corner);
  min-height: 232px;
  display: flex;
  flex-direction: column;
}

.page-news .cat-card__no {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}

.page-news .cat-card__title {
  margin: 12px 0 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-news .cat-card__desc {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .cat-card__meta {
  margin: auto 0 0;
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--electric-deep);
}

/* ---------- 03 精选列表 ---------- */
.page-news .news-picks .section-head {
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

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

.page-news .filter-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-news .filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  background: var(--ice);
  border: 1px solid var(--line);
  clip-path: var(--cut-corner-sm);
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.page-news .filter-radio:checked + .filter-chip {
  background: var(--arena);
  border-color: var(--arena);
  color: #fff;
  font-weight: 700;
}

.page-news .filter-radio:focus-visible + .filter-chip {
  outline: 2px solid var(--electric-deep);
  outline-offset: 2px;
}

.page-news:has(#cat-preview:checked) .entry:not([data-cat="preview"]),
.page-news:has(#cat-recap:checked) .entry:not([data-cat="recap"]),
.page-news:has(#cat-data:checked) .entry:not([data-cat="data"]),
.page-news:has(#cat-release:checked) .entry:not([data-cat="release"]),
.page-news:has(#cat-tips:checked) .entry:not([data-cat="tips"]) {
  display: none;
}

.page-news .news-list {
  border-top: 1px solid var(--news-rule);
}

.page-news .entry {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0 14px;
  padding: 22px 14px;
  margin: 0 -14px;
  border-bottom: 1px dashed var(--news-rule);
}

.page-news .entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--arena);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .28s var(--ease);
}

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

.page-news .entry__no {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  padding-top: 7px;
}

.page-news .entry__body {
  min-width: 0;
}

.page-news .entry__title {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-news .entry__meta {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}

.page-news .entry__meta > span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--line);
}

.page-news .entry__cat {
  color: var(--electric-deep);
  font-weight: 700;
}

.page-news .entry__more {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .3s var(--ease);
}

.page-news .entry__more > div {
  overflow: hidden;
}

.page-news .entry__summary {
  margin: 12px 0 0;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .entry__links {
  margin: 10px 0 0;
  font-size: 13px;
}

.page-news .entry__links a {
  color: var(--electric-deep);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.page-news .entry__links a:hover {
  color: var(--arena);
}

/* ---------- 04 复盘拆解 ---------- */
.page-news .news-replay .section-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-news .news-replay__grid {
  align-items: start;
}

.page-news .replay-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-news .replay-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 16px;
  padding: 22px 0;
  border-top: 1px solid var(--news-rule-dark);
}

.page-news .replay-step:last-child {
  border-bottom: 1px solid var(--news-rule-dark);
}

.page-news .replay-step__no {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--arena);
  padding-top: 4px;
}

.page-news .replay-step__title {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ice);
}

.page-news .replay-step__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(247, 249, 252, .76);
}

.page-news .news-replay__fig {
  margin: 0;
  min-width: 0;
}

.page-news .news-replay__fig .figure__cap {
  color: rgba(247, 249, 252, .62);
}

/* ---------- 05 编辑流程 ---------- */
.page-news .news-flow .section-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-news .news-flow__grid {
  align-items: start;
}

.page-news .flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: flow;
}

.page-news .flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 16px;
  padding: 20px 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .flow-step:last-child {
  border-bottom: 1px solid var(--news-rule);
}

.page-news .flow-step__no {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--arena);
  padding-top: 5px;
}

.page-news .flow-step__title {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-news .flow-step__desc {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .flow-step__time {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--electric-deep);
}

.page-news .news-flow__fig {
  margin: 0;
  min-width: 0;
}

/* ---------- 06 专题连载 ---------- */
.page-news .news-series .section-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-news .news-series__grid {
  align-items: start;
}

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

.page-news .series-item {
  padding: 20px 0 24px;
  border-top: 1px solid var(--news-rule);
}

.page-news .series-item:last-child {
  border-bottom: 1px solid var(--news-rule);
}

.page-news .series-item__title {
  margin: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-news .series-item__desc {
  margin: 10px 0 0;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .series-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.page-news .dot {
  display: block;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.page-news .dot.is-done {
  background: var(--arena);
  border-color: var(--arena);
}

.page-news .series-item__meta {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-news .news-series__fig {
  margin: 0;
  min-width: 0;
}

/* ---------- 07 继续读 ---------- */
.page-news .news-more__inner {
  display: grid;
  gap: 28px;
}

.page-news .news-more__text h2 {
  margin: 12px 0 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ice);
}

.page-news .news-more__text p {
  margin: 16px 0 0;
  max-width: 36em;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(247, 249, 252, .78);
}

.page-news .news-more__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.page-news .news-more__actions .btn {
  flex: 1 1 auto;
  min-width: 168px;
  text-align: center;
}

/* ---------- 响应式 ---------- */
@media (max-width: 899px) {
  .page-news .news-hero__fig {
    margin-top: 26px;
  }

  .page-news .news-hero__num {
    font-size: 22px;
  }

  .page-news .news-replay__fig,
  .page-news .news-flow__fig,
  .page-news .news-series__fig {
    margin-top: 26px;
  }

  .page-news .entry {
    grid-template-columns: 34px 1fr;
    gap: 0 10px;
    padding: 20px 12px;
    margin: 0 -12px;
  }

  .page-news .entry__no {
    padding-top: 5px;
    font-size: 11px;
  }
}

@media (min-width: 900px) {
  .page-news .news-more__inner {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 56px;
  }

  .page-news .news-more__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (hover: hover) and (min-width: 960px) {
  .page-news .entry__more {
    grid-template-rows: 0fr;
  }

  .page-news .entry:hover .entry__more,
  .page-news .entry:focus-within .entry__more {
    grid-template-rows: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .entry::before,
  .page-news .entry__more,
  .page-news .filter-chip {
    transition: none;
  }
}
<<<END>>>
