.page-news {
  --news-block: clamp(44px, 7vw, 88px);
  --news-line: 1px solid var(--line);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.page-news .breadcrumb {
  margin-top: 24px;
}

/* ---------- 首屏：错位色块 + 事实栏 ---------- */
.news-masthead {
  position: relative;
  isolation: isolate;
  padding: clamp(26px, 5vw, 56px) 0 clamp(8px, 2vw, 18px);
}

.news-masthead::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -10%;
  left: -8%;
  right: 14%;
  height: 88%;
  background: linear-gradient(118deg, var(--ink-800) 0%, var(--ink-900) 56%, rgba(11, 31, 26, 0) 100%);
  transform: skewY(-3.5deg);
  pointer-events: none;
}

.news-masthead__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.news-masthead__inner::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 3px;
  height: 62px;
  background: linear-gradient(var(--cyan), rgba(0, 230, 195, 0));
  opacity: .65;
  pointer-events: none;
}

.news-masthead__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 6.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--text);
  max-width: 17ch;
}

.news-masthead__text {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.9;
  color: var(--silver);
}

.news-masthead__facts {
  margin: 0;
  border-top: var(--news-line);
}

.news-masthead__facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: var(--news-line);
}

.news-masthead__facts dt {
  font-size: 13px;
  color: var(--muted);
}

.news-masthead__facts dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--cyan);
}

@media (min-width: 900px) {
  .news-masthead__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: end;
    gap: clamp(28px, 5vw, 72px);
  }
}

/* ---------- 通用区块间距 ---------- */
.page-news__section {
  margin-top: var(--news-block);
}

.page-news .section-head {
  margin-bottom: clamp(18px, 2.6vw, 30px);
}

/* ---------- 头条条目 ---------- */
.news-lead {
  position: relative;
  overflow: hidden;
  border: var(--news-line);
  background: var(--ink-800);
  transition: border-color .2s var(--ease);
}

.news-lead__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-lead__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: saturate(.45) contrast(1.06);
}

.news-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(11, 31, 26, .45) 0%, var(--ink-800) 74%);
}

.news-lead__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 68ch;
  padding: clamp(20px, 3.6vw, 44px);
}

.news-lead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.news-lead__stage {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.news-lead__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 3.2vw, 36px);
  line-height: 1.18;
  color: var(--text);
}

.news-lead__summary {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--silver);
}

.news-lead__points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-lead__points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver);
}

.news-lead__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 1px;
  background: var(--cyan);
}

.news-lead__body .btn {
  justify-self: start;
}

@media (min-width: 1100px) {
  .news-lead {
    transform: translateX(10px);
    border-right: 3px solid var(--cyan);
  }
}

/* ---------- 筛选与列表 ---------- */
.news-stream {
  position: relative;
  margin-top: var(--news-block);
}

.news-stream__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.news-stream__inner {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
}

.news-aside__art {
  margin: 18px 0 0;
  border: var(--news-line);
  overflow: hidden;
  background: var(--ink-700);
}

.news-aside__art img {
  display: block;
  width: 100%;
  height: auto;
}

.news-aside__hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

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

.news-tags__label {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: var(--news-line);
  border-left: 3px solid transparent;
  background: var(--ink-800);
  color: var(--silver);
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  user-select: none;
  transition: background-color .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}

.news-tags__label:hover {
  background: var(--ink-700);
  color: var(--text);
}

.page-news #news-tag-all:checked ~ .news-stream__inner .news-tags__label[for="news-tag-all"],
.page-news #news-tag-roster:checked ~ .news-stream__inner .news-tags__label[for="news-tag-roster"],
.page-news #news-tag-archive:checked ~ .news-stream__inner .news-tags__label[for="news-tag-archive"],
.page-news #news-tag-glossary:checked ~ .news-stream__inner .news-tags__label[for="news-tag-glossary"],
.page-news #news-tag-review:checked ~ .news-stream__inner .news-tags__label[for="news-tag-review"] {
  border-left-color: var(--orange);
  background: var(--ink-700);
  color: var(--text);
}

.news-stream:has(.news-stream__radio:focus-visible) .news-tags__label {
  outline: 1px dashed var(--muted);
  outline-offset: 3px;
}

.page-news #news-tag-roster:checked ~ .news-stream__inner .news-item:not([data-tag="roster"]),
.page-news #news-tag-archive:checked ~ .news-stream__inner .news-item:not([data-tag="archive"]),
.page-news #news-tag-glossary:checked ~ .news-stream__inner .news-item:not([data-tag="glossary"]),
.page-news #news-tag-review:checked ~ .news-stream__inner .news-item:not([data-tag="review"]) {
  display: none;
}

@media (min-width: 960px) {
  .news-stream__inner {
    grid-template-columns: 216px minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
  }

  .news-aside {
    position: sticky;
    top: 32px;
  }

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

  .news-aside__art img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
}

/* ---------- 条目 ---------- */
.news-feed {
  border-top: var(--news-line);
}

.news-item {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.6vw, 30px) 0 clamp(18px, 2.6vw, 30px) 16px;
  border-bottom: var(--news-line);
}

.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(18px, 2.6vw, 30px);
  bottom: clamp(18px, 2.6vw, 30px);
  width: 2px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform .24s var(--ease);
}

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

@media (hover: hover) {
  .news-item:hover {
    background: linear-gradient(90deg, rgba(0, 230, 195, .055) 0%, rgba(0, 230, 195, 0) 62%);
  }
}

.news-item__main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--muted);
}

.news-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.32;
  color: var(--text);
}

.news-item__summary {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--silver);
}

.news-item__more {
  margin: 0;
  padding: 6px 0 6px 16px;
  border-left: 1px solid var(--mid);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.news-item__points {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-item__points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--silver);
}

.news-item__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 1px;
  background: var(--mid);
}

.news-item__thumb {
  margin: 0;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border: var(--news-line);
  background: var(--ink-700);
  overflow: hidden;
}

.news-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) and (min-width: 960px) {
  .news-item__more {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-left-color: transparent;
    opacity: 0;
    overflow: hidden;
    transition: max-height .26s var(--ease), opacity .2s var(--ease), padding .26s var(--ease), border-color .26s var(--ease);
  }

  .news-item:hover .news-item__more,
  .news-item:focus-within .news-item__more {
    max-height: 8em;
    padding-top: 6px;
    padding-bottom: 6px;
    border-left-color: var(--mid);
    opacity: 1;
  }
}

@media (min-width: 760px) {
  .news-item--split {
    grid-template-columns: minmax(0, 1fr) 168px;
    align-items: start;
    gap: clamp(18px, 3vw, 34px);
  }

  .news-item--split .news-item__thumb {
    max-width: none;
  }
}

/* ---------- 列表末尾节奏条 ---------- */
.news-feed__tail {
  display: grid;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 34px);
  padding: 18px 20px;
  border: 1px dashed var(--line);
  background: var(--ink-950);
}

.news-feed__tail-title {
  margin: 0;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.news-feed__tail ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-feed__tail li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.news-feed__tail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 8px;
  height: 1px;
  background: var(--mid);
}

/* ---------- 专题系列 ---------- */
.news-series__art {
  margin: 0 0 clamp(20px, 3vw, 32px);
  border: var(--news-line);
  overflow: hidden;
  background: var(--ink-700);
}

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

.news-series-group {
  border-top: 1px dashed var(--line);
}

.news-series {
  border-bottom: 1px dashed var(--line);
}

.news-series__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.news-series__head::-webkit-details-marker {
  display: none;
}

.news-series__head::after {
  content: "▾";
  font-size: 11px;
  color: var(--mid);
  transition: transform .2s var(--ease);
}

.news-series:not([open]) .news-series__head::after {
  transform: rotate(-90deg);
}

.news-series__idx {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--orange);
}

.news-series__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
}

.news-series__count {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.news-series[open] .news-series__count {
  color: var(--cyan);
}

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

.news-series__item {
  display: grid;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.news-series__issue {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--orange);
}

.news-series__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--silver);
}

@media (min-width: 700px) {
  .news-series__item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
  }
}

/* ---------- 判断依据 ---------- */
.news-criteria {
  display: grid;
  margin: clamp(20px, 3vw, 32px) 0 0;
  padding: 0;
  list-style: none;
  border-top: var(--news-line);
}

.news-criteria__item {
  display: grid;
  gap: 6px;
  padding: clamp(16px, 2.4vw, 26px) 0;
  border-bottom: var(--news-line);
}

.news-criteria__idx {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--orange);
}

.news-criteria__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.news-criteria__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--silver);
}

.news-criteria__boundary {
  margin: clamp(18px, 2.6vw, 28px) 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 106, 43, .06);
  font-size: 14px;
  line-height: 1.8;
  color: var(--paper);
}

@media (min-width: 720px) {
  .news-criteria__item {
    grid-template-columns: 44px minmax(0, 186px) minmax(0, 1fr);
    gap: clamp(16px, 2.6vw, 36px);
    align-items: start;
  }
}

/* ---------- 回访节奏 ---------- */
.news-cadence {
  position: relative;
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 3.4vw, 40px);
  border: var(--news-line);
  background: var(--ink-800);
  overflow: hidden;
}

.news-cadence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.news-cadence__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.2;
  color: var(--text);
}

.news-cadence__text {
  margin: 12px 0 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.9;
  color: var(--silver);
}

.news-cadence__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.news-cadence__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--news-line);
}

.news-cadence__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: var(--news-line);
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.news-cadence__key {
  flex: 0 0 auto;
  min-width: 56px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--cyan);
}

@media (min-width: 860px) {
  .news-cadence {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item::before,
  .page-news .news-item__more,
  .page-news .news-series__head::after,
  .page-news .news-lead {
    transition: none;
    transform: none;
  }
}
</PAGE_CSS>>>
