.page-news {
  --news-line: rgba(233, 242, 236, 0.14);
  --news-line-soft: rgba(233, 242, 236, 0.08);
  --news-line-strong: rgba(198, 242, 76, 0.45);
  --news-measure: 38em;
  display: block;
  overflow-x: clip;
  background: var(--deep-night);
  color: var(--cool-white);
}

.page-news .breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ---------- 首屏 ---------- */

.page-news .news-hero {
  position: relative;
  padding: 20px 0 52px;
  background:
    radial-gradient(120% 90% at 88% -12%, rgba(198, 242, 76, 0.14), transparent 62%),
    linear-gradient(180deg, var(--panel-green) 0%, var(--deep-night) 90%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(233, 242, 236, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233, 242, 236, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

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

.page-news .news-hero__kicker {
  margin: 0 0 16px;
  color: var(--neon-dim);
}

.page-news .news-hero__title {
  margin: 0 0 18px;
  max-width: 20em;
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

.page-news .news-hero__lede {
  margin: 0;
  max-width: var(--news-measure);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--grey-green);
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px 22px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--news-line);
}

.page-news .news-hero__stats .stat-figure__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cool-white);
}

.page-news .news-hero__stats .stat-figure__label {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-note);
  line-height: 1.55;
  color: var(--grey-green);
}

/* ---------- 栏目标签带 ---------- */

.page-news .topic-band {
  padding: 34px 0 0;
}

.page-news .topic-band__title {
  margin: 0 0 14px;
  color: var(--grey-green);
}

.page-news .filter-tags {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .filter-tags::-webkit-scrollbar {
  display: none;
}

.page-news .filter-tag {
  flex: 0 0 auto;
  padding: 9px 20px;
  border: 1px solid var(--deep-line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--grey-green);
  font-family: var(--font-sans);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.page-news .filter-tag:hover,
.page-news .filter-tag:focus-visible {
  color: var(--cool-white);
  border-color: var(--neon-dim);
}

.page-news .filter-tag[aria-pressed="true"] {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
  color: var(--silent-black);
  font-weight: 700;
}

/* ---------- 通用图形 ---------- */

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

.page-news .news-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--deep-night);
}

.page-news .news-figure__caption {
  margin-top: 10px;
  font-size: var(--fs-note);
  line-height: 1.6;
  color: var(--grey-green);
}

/* ---------- 置顶条目 ---------- */

.page-news .top-story-wrap {
  margin-top: 20px;
}

.page-news .top-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(142deg, rgba(198, 242, 76, 0.08), transparent 58%),
    var(--panel-green);
}

.page-news .top-story::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--neon-lime), var(--neon-dim));
}

.page-news .top-story__grid {
  display: grid;
  gap: 22px;
}

.page-news .top-story__title {
  margin: 10px 0 14px;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

.page-news .top-story__sum {
  margin: 0 0 12px;
  max-width: var(--news-measure);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--grey-green);
}

.page-news .top-story__details {
  margin-top: 16px;
  border-top: 1px solid var(--news-line);
  padding-top: 14px;
}

.page-news .top-story__details summary {
  cursor: pointer;
  font-size: var(--fs-note);
  letter-spacing: 0.06em;
  color: var(--neon-dim);
  list-style: none;
}

.page-news .top-story__details summary::-webkit-details-marker {
  display: none;
}

.page-news .top-story__details summary::before {
  content: "＋ ";
  font-family: var(--font-mono);
}

.page-news .top-story__details[open] summary::before {
  content: "－ ";
}

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

.page-news .change-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--fs-note);
  line-height: 1.7;
  color: var(--cool-white);
}

.page-news .change-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--neon-lime);
}

/* ---------- 条目流 ---------- */

.page-news .feed {
  padding: 52px 0 8px;
}

.page-news .feed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  margin-bottom: 6px;
}

.page-news .feed-title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

.page-news .feed-note {
  margin: 0;
  font-size: var(--fs-note);
  color: var(--grey-green);
}

.page-news .feed-list {
  display: flex;
  flex-direction: column;
}

.page-news .feed-entry {
  padding: 26px 0 30px;
  border-top: 1px solid var(--news-line-soft);
  transition: border-color 0.24s ease;
}

.page-news .feed-entry[hidden] {
  display: none;
}

.page-news .feed-entry:hover,
.page-news .feed-entry:focus-within {
  border-top-color: var(--news-line-strong);
}

.page-news .entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.page-news .entry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-news .entry-tag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.page-news .entry-tag--version { color: var(--neon-lime); }
.page-news .entry-tag--series  { color: var(--cool-white); }
.page-news .entry-tag--method  { color: var(--neon-dim); }
.page-news .entry-tag--notice  { color: var(--grey-green); }

.page-news .entry-time {
  flex: 0 0 auto;
  font-size: var(--fs-note);
  color: var(--grey-green);
  white-space: nowrap;
}

.page-news .entry-title {
  margin: 0 0 10px;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cool-white);
  transition: color 0.2s ease;
}

.page-news .feed-entry:hover .entry-title {
  color: var(--neon-lime);
}

.page-news .entry-sum {
  margin: 0 0 6px;
  max-width: var(--news-measure);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--grey-green);
  transition: color 0.2s ease;
}

.page-news .feed-entry:hover > .entry-sum:first-of-type {
  color: var(--cool-white);
}

.page-news .feed-entry__figure {
  margin-top: 20px;
}

/* ---------- 目录筛选说明 ---------- */

.page-news .directory-wrap {
  margin-top: 24px;
  margin-bottom: 0;
}

.page-news .directory {
  background: linear-gradient(162deg, var(--panel-green) 0%, var(--deep-night) 100%);
}

.page-news .directory__kicker {
  margin: 0 0 12px;
  color: var(--neon-dim);
}

.page-news .directory__title {
  margin: 0 0 16px;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

.page-news .directory__grid p {
  margin: 0 0 14px;
  max-width: var(--news-measure);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--grey-green);
}

.page-news .directory__aside {
  margin-top: 22px;
}

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

.page-news .directory__facts li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--news-line-soft);
  font-size: var(--fs-note);
  line-height: 1.6;
  color: var(--grey-green);
}

.page-news .directory__facts .mono {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--neon-lime);
  letter-spacing: -0.02em;
}

.page-news .directory__figure {
  margin-top: 30px;
}

.page-news .directory__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.page-news .chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--deep-line);
  border-radius: var(--radius-pill);
  font-size: var(--fs-note);
  color: var(--cool-white);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.page-news .chip:hover,
.page-news .chip:focus-visible {
  border-color: var(--neon-dim);
  background: rgba(198, 242, 76, 0.08);
  color: var(--neon-lime);
}

/* ---------- 纠错与节奏 ---------- */

.page-news .corrections {
  padding: 56px 0 68px;
}

.page-news .corrections__title {
  margin: 0 0 22px;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

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

.page-news .correction-card {
  position: relative;
  padding: var(--pad-panel);
  border: 1px solid var(--deep-line);
  border-radius: var(--radius-lg);
  background: var(--panel-green);
}

.page-news .correction-card--flagged {
  border-color: rgba(255, 92, 43, 0.45);
}

.page-news .correction-card--flagged::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steal-orange);
}

.page-news .correction-card__title {
  margin: 0 0 16px;
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cool-white);
}

.page-news .correction-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-news .correction-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--cool-white);
}

.page-news .correction-list .mono {
  font-family: var(--font-mono);
  font-size: var(--fs-note);
  color: var(--neon-dim);
}

.page-news .correction-card__text,
.page-news .correction-card__note {
  margin: 0 0 14px;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--grey-green);
}

.page-news .correction-card__note {
  font-size: var(--fs-note);
}

.page-news .correction-card p:last-child {
  margin-bottom: 0;
}

.page-news .corrections__tail {
  margin: 26px 0 0;
  font-size: var(--fs-note);
  line-height: 1.7;
  color: var(--grey-green);
}

.page-news .corrections__tail a {
  color: var(--neon-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .corrections__tail a:hover,
.page-news .corrections__tail a:focus-visible {
  color: var(--neon-lime);
}

/* ---------- 响应式 ---------- */

@media (min-width: 700px) {
  .page-news .news-hero {
    padding: 28px 0 64px;
  }

  .page-news .feed-entry {
    padding: 30px 0 34px;
  }

  .page-news .corrections__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (min-width: 900px) {
  .page-news .top-story__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
    gap: 40px;
  }

  .page-news .top-story__media img {
    height: 100%;
    aspect-ratio: 1000 / 640;
  }

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

  .page-news .directory__aside {
    margin-top: 6px;
  }

  .page-news .directory__figure {
    margin-top: 36px;
  }
}

@media (min-width: 1080px) {
  .page-news .feed-entry__figure {
    max-width: 760px;
  }
}
<<<END>>>
