.page-news {
  --news-col: 1160px;
  --news-rule: rgba(217, 214, 203, .9);
  --news-rule-soft: rgba(217, 214, 203, .55);
  --news-radius: 16px;
  --news-ink: #10160F;
}

/* ---------- 页首 ---------- */

.page-news .news-lead {
  padding: clamp(26px, 4.5vw, 56px) 0 clamp(10px, 1.6vw, 20px);
}

.page-news .news-lead .breadcrumbs {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.page-news .news-lead .eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
}

.page-news .news-lead .display {
  margin: 0 0 16px;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 900;
  color: var(--seed);
}

.page-news .news-lead .lead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ---------- 本期看点 ---------- */

.page-news .news-focus {
  margin-top: clamp(18px, 3vw, 34px);
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--news-rule);
  border-radius: var(--news-radius);
  box-shadow: 0 12px 28px rgba(16, 22, 15, .06);
}

.page-news .news-focus__head {
  margin-bottom: 6px;
}

.page-news .news-focus__head .eyebrow {
  margin: 0 0 8px;
  color: var(--rock);
}

.page-news .news-focus__head .section__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--seed);
}

.page-news .focus-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.page-news .focus-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .focus-item__no {
  grid-row: 1 / span 2;
  padding-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--kiwi);
}

.page-news .focus-item__title {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--seed);
}

.page-news .focus-item__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .page-news .focus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .page-news .focus-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 20px clamp(16px, 2vw, 26px) 6px;
  }

  .page-news .focus-item:first-child {
    padding-left: 0;
  }

  .page-news .focus-item:last-child {
    padding-right: 0;
  }

  .page-news .focus-item + .focus-item {
    border-left: 1px solid var(--news-rule-soft);
  }

  .page-news .focus-item__no {
    grid-row: auto;
    padding-top: 0;
  }
}

/* ---------- 过渡图 ---------- */

.page-news .news-texture {
  margin: clamp(28px, 5vw, 64px) 0 clamp(24px, 4vw, 48px);
  padding: 0;
  overflow: hidden;
}

.page-news .news-texture img {
  display: block;
  width: 100%;
  height: clamp(110px, 16vw, 200px);
  max-width: 100%;
  object-fit: cover;
  opacity: .55;
}

/* ---------- 近期条目 ---------- */

.page-news .news-entries .section__head {
  margin-bottom: 0;
}

.page-news .news-entries .section__title {
  margin: 6px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--seed);
}

.page-news .news-entries .section__desc {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-news .filter-block {
  margin: clamp(20px, 3vw, 30px) 0 6px;
  padding-top: 18px;
  border-top: 1px solid var(--news-rule);
}

.page-news .filter-block__title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--rock);
}

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

.page-news .filter-btn {
  appearance: none;
  border: 1px solid var(--news-rule);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.page-news .filter-btn:hover {
  border-color: var(--kiwi);
  color: var(--seed);
}

.page-news .filter-btn[aria-pressed="true"] {
  background: var(--seed);
  border-color: var(--seed);
  color: var(--pulse);
}

.page-news .filter-btn:focus-visible {
  outline: 2px solid var(--pulse);
  outline-offset: 2px;
}

/* 条目列表 */

.page-news .entry-list {
  list-style: none;
  margin: clamp(14px, 2vw, 22px) 0 0;
  padding: 0;
  border-top: 1px solid var(--seed);
}

.page-news .entry {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-areas:
    "idx body"
    "tags tags";
  gap: 8px 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--news-rule);
  transition: background-color .18s ease;
}

.page-news .entry:hover {
  background-color: rgba(93, 187, 63, .05);
}

.page-news .entry__index {
  grid-area: idx;
  padding-top: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--kiwi);
}

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

.page-news .entry__title {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--seed);
}

.page-news .entry__summary {
  margin: 0 0 10px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-news .entry__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--rock);
}

.page-news .entry__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--news-rule);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .06em;
  white-space: nowrap;
}

.page-news .tag--clay {
  background: rgba(201, 99, 63, .12);
  border-color: rgba(201, 99, 63, .4);
  color: #8F3F24;
}

.page-news .tag--blue {
  background: rgba(47, 107, 224, .1);
  border-color: rgba(47, 107, 224, .36);
  color: #1D4BB0;
}

.page-news .tag--moss {
  background: rgba(74, 107, 79, .14);
  border-color: rgba(74, 107, 79, .4);
  color: #2F4633;
}

/* 置顶条目 */

.page-news .entry--feature {
  grid-template-areas:
    "idx body"
    "tags tags"
    "media media";
}

.page-news .entry__media {
  grid-area: media;
  margin: 14px 0 0;
  border-radius: var(--news-radius);
  overflow: hidden;
}

.page-news .entry__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 820px) {
  .page-news .entry {
    grid-template-columns: 56px minmax(0, 1fr) 200px;
    grid-template-areas: "idx .page-news tags";
    gap: 0 22px;
    padding: 26px 0 24px;
  }

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

  .page-news .entry__tags {
    justify-content: flex-end;
    padding-top: 3px;
  }

  .page-news .entry--feature {
    grid-template-areas:
      "idx .page-news tags"
      "media media media";
    background: linear-gradient(180deg, rgba(93, 187, 63, .07), rgba(93, 187, 63, 0));
  }

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

/* ---------- 专题系列 ---------- */

.page-news .news-series {
  margin-top: clamp(40px, 6vw, 76px);
}

.page-news .news-series .section__title {
  margin: 6px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--seed);
}

.page-news .news-series .section__desc {
  margin: 0 0 22px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-news .series-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(272px, 82%);
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}

.page-news .series-rail::-webkit-scrollbar {
  height: 6px;
}

.page-news .series-rail::-webkit-scrollbar-thumb {
  background: var(--news-rule);
  border-radius: 999px;
}

.page-news .series-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--paper);
  border: 1px solid var(--news-rule);
  border-radius: var(--news-radius);
}

.page-news .series-card__figure {
  margin: 0;
  border-radius: calc(var(--news-radius) - 4px);
  overflow: hidden;
}

.page-news .series-card__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.page-news .series-card__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--seed);
}

.page-news .series-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-news .series-card__timeline {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
}

.page-news .series-card__timeline li {
  position: relative;
  flex: 1 1 0;
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--rock);
  text-align: center;
}

.page-news .series-card__timeline li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--news-rule);
}

.page-news .series-card__timeline li:first-child::before {
  left: 50%;
}

.page-news .series-card__timeline li:last-child::before {
  right: 50%;
}

.page-news .series-card__timeline li::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--kiwi);
}

.page-news .series-card__timeline li:last-child::after {
  background: var(--clay);
}

@media (min-width: 900px) {
  .page-news .series-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: minmax(0, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
}

/* ---------- 更新提醒 ---------- */

.page-news .news-alerts {
  margin-top: clamp(40px, 6vw, 76px);
}

.page-news .news-alerts .section__title {
  margin: 6px 0 clamp(20px, 3vw, 28px);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--seed);
}

.page-news .news-alerts .bento {
  align-items: start;
  gap: clamp(20px, 3vw, 34px);
}

.page-news .news-alerts__sub {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--seed);
}

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

.page-news .cadence__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .cadence dt {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--seed);
}

.page-news .cadence dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

@media (min-width: 560px) {
  .page-news .cadence__row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 6px 18px;
  }
}

.page-news .news-reminder {
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--seed);
  border-radius: var(--news-radius);
}

.page-news .news-reminder .eyebrow {
  margin: 0 0 10px;
  color: var(--pulse);
}

.page-news .news-reminder__title {
  margin: 0 0 10px;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.4;
  color: #FFFFFF;
}

.page-news .news-reminder__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(244, 241, 232, .78);
}

.page-news .news-reminder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-reminder .btn--ghost {
  background: transparent;
  border-color: rgba(244, 241, 232, .42);
  color: var(--canvas);
}

.page-news .news-reminder .btn--ghost:hover {
  border-color: var(--pulse);
  color: var(--pulse);
}

/* ---------- 纠错与线索 ---------- */

.page-news .news-corrections {
  margin: clamp(40px, 6vw, 80px) 0 clamp(20px, 4vw, 44px);
}

.page-news .news-corrections__panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--news-rule);
  border-radius: var(--news-radius);
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(47, 163, 107, .17), rgba(47, 163, 107, 0) 62%),
    var(--paper);
}

.page-news .news-corrections__panel .eyebrow {
  margin: 0 0 10px;
  color: var(--moss);
}

.page-news .news-corrections__panel .section__title {
  margin: 0 0 14px;
  max-width: 22ch;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.32;
  color: var(--seed);
}

.page-news .news-corrections__text {
  margin: 0 0 22px;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-news .news-corrections__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
<<<END>>>
