.page-news {
  --news-rule: rgba(13, 27, 42, 0.14);
  --news-rule-dark: rgba(246, 242, 234, 0.2);
  --news-tint: rgba(13, 27, 42, 0.05);
  --news-card: rgba(255, 255, 255, 0.66);
  background: var(--ice);
  color: var(--char);
}

.page-news h2 {
  font-family: var(--font-display);
  font-size: clamp(23px, 5.4vw, 38px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 10px 0 14px;
  color: var(--ink);
}

.page-news h3 {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.page-news .news-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  max-width: 38em;
  margin: 0 0 4px;
  color: var(--char);
}

.page-news .news-lead--dark {
  color: var(--ice);
  opacity: 0.88;
}

.page-news .news-block {
  padding: 54px 0;
}

/* ---------- 首屏 ---------- */
.page-news .news-masthead {
  padding-top: 22px;
}

.page-news .news-masthead__body {
  padding-bottom: 6px;
}

.page-news .news-masthead h1 {
  font-family: var(--font-display);
  font-size: clamp(29px, 8vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 14px 0 18px;
  color: var(--ink);
}

.page-news .news-masthead__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  background: var(--news-rule);
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-news .news-masthead__stats li {
  background: var(--ice);
  padding: 14px 16px;
}

.page-news .news-masthead__stats b {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 600;
  color: var(--maple);
  letter-spacing: 0;
}

.page-news .news-masthead__stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.page-news .news-masthead__figure {
  margin: 28px auto 0;
}

.page-news .news-masthead__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
}

/* ---------- 近期条目 ---------- */
.page-news .log-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--news-rule);
}

.page-news .log-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  grid-template-areas:
    "no tag when"
    "body .page-news body";
  align-items: start;
  gap: 6px 12px;
  padding: 16px 12px 16px 16px;
  border-top: 1px solid var(--news-rule);
  transition: background-color 0.25s var(--ease);
}

.page-news .log-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--maple);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.3s var(--ease);
}

.page-news .log-row:hover,
.page-news .log-row:focus-within {
  background: var(--news-tint);
}

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

.page-news .log-row__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  line-height: 1.9;
  color: var(--steel);
}

.page-news .log-row__tag {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  white-space: nowrap;
}

.page-news .log-row__tag::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--steel);
}

.page-news .log-row__tag--rule::before { background: var(--maple); }
.page-news .log-row__tag--fix::before { background: var(--amber); }
.page-news .log-row__tag--series::before { background: var(--lake); }
.page-news .log-row__tag--version::before { background: var(--steel); }
.page-news .log-row__tag--report::before { background: var(--ink-2); }

.page-news .log-row__when {
  grid-area: when;
  justify-self: end;
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  line-height: 1.9;
  color: var(--steel);
  white-space: nowrap;
}

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

.page-news .log-row__title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 2px 0 0;
  color: var(--ink);
}

.page-news .log-row__text {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) and (min-width: 900px) {
  .page-news .log-row__text {
    transition: -webkit-line-clamp 0.2s linear;
  }
  .page-news .log-row:hover .log-row__text,
  .page-news .log-row:focus-within .log-row__text {
    -webkit-line-clamp: 8;
    color: var(--char);
  }
}

/* ---------- 按主题找 ---------- */
.page-news .topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
}

.page-news .topic-pills a {
  text-decoration: none;
}

.page-news .topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .topic {
  padding: 20px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .topic h3 {
  margin-bottom: 10px;
}

.page-news .topic p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--char);
}

.page-news .topic__who {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px dashed var(--news-rule);
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: var(--steel) !important;
}

/* ---------- 专题连载 ---------- */
.page-news .series-head {
  margin: 34px 0 12px;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

.page-news .series-strip {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 4px 28px 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.page-news .series-card {
  flex: 0 0 auto;
  width: min(68vw, 232px);
  scroll-snap-align: start;
  padding: 16px 18px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .series-card__no {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--maple);
}

.page-news .series-card--lake .series-card__no {
  color: var(--lake);
}

.page-news .series-card__title {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--char);
}

.page-news .series-figure {
  margin: 30px 0 0;
}

.page-news .series-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-rule);
  object-fit: cover;
}

.page-news .series-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel);
}

/* ---------- 年度报告 ---------- */
.page-news .news-report {
  margin-top: 20px;
  padding: 54px 0 58px;
  background: var(--ink);
  color: var(--ice);
}

.page-news .news-report h2 {
  color: var(--ice);
  margin-top: 14px;
}

.page-news .news-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.page-news .news-report__cover {
  margin: 0;
  max-width: 280px;
}

.page-news .news-report__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  object-fit: cover;
}

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

.page-news .report-chapters {
  list-style: none;
  counter-reset: ch;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--news-rule-dark);
}

.page-news .report-chapters li {
  counter-increment: ch;
  position: relative;
  padding: 15px 0 15px 46px;
  border-bottom: 1px solid var(--news-rule-dark);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(246, 242, 234, 0.84);
}

.page-news .report-chapters li::before {
  content: "0" counter(ch);
  position: absolute;
  left: 0;
  top: 17px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--amber);
}

.page-news .report-chapters strong {
  color: var(--ice);
  font-weight: 600;
}

.page-news .news-report__foot {
  margin: 20px 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(246, 242, 234, 0.72);
  max-width: 36em;
}

/* ---------- 更新节奏 ---------- */
.page-news .cadence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 24px;
  background: var(--news-rule);
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-news .cadence-item {
  background: var(--ice);
  padding: 20px;
}

.page-news .cadence-item__num {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--maple);
}

.page-news .cadence-item h3 {
  margin-bottom: 6px;
}

.page-news .cadence-item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
}

.page-news .cadence-figure {
  margin: 28px 0 0;
}

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

.page-news .subscribe {
  margin-top: 30px;
  padding: 22px 20px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .subscribe h3 {
  margin-bottom: 8px;
}

.page-news .subscribe p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--char);
  max-width: 36em;
}

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

.page-news .subscribe__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 18px;
  border: 1px solid var(--news-rule);
  border-radius: var(--pill);
  background: var(--ice);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--char);
}

.page-news .subscribe__input::placeholder {
  color: var(--steel);
}

.page-news .subscribe__input:focus-visible {
  outline: 2px solid var(--maple);
  outline-offset: 2px;
}

.page-news .subscribe__note {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: var(--steel) !important;
}

/* ---------- 后续入口 ---------- */
.page-news .news-next {
  padding-bottom: 76px;
}

.page-news .news-next__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .news-next__list li {
  border-bottom: 1px solid var(--news-rule);
}

.page-news .news-next__list a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.page-news .news-next__list a span {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}

.page-news .news-next__list a:hover {
  color: var(--char);
  padding-left: 12px;
}

/* ---------- 媒体查询 ---------- */
@media (min-width: 700px) {
  .page-news .news-block {
    padding: 68px 0;
  }

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

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

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

  .page-news .news-report {
    padding: 72px 0 76px;
  }
}

@media (min-width: 900px) {
  .page-news .log-row {
    grid-template-columns: 54px 118px minmax(0, 1fr) 116px;
    grid-template-areas: "no tag .page-news when";
    gap: 0 22px;
    padding: 20px 22px 20px 20px;
  }

  .page-news .log-row__no,
  .page-news .log-row__tag {
    line-height: 1.5;
    padding-top: 2px;
  }

  .page-news .log-row__title {
    font-size: 17px;
    margin-top: 0;
  }

  .page-news .news-report__grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
  }

  .page-news .news-report__cover {
    max-width: none;
  }
}

@media (min-width: 1100px) {
  .page-news .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-news .topic {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .log-row,
  .page-news .log-row::before,
  .page-news .log-row__text,
  .page-news .news-next__list a {
    transition: none;
  }
}
</final>

.page-news {
  --news-rule: rgba(13, 27, 42, 0.14);
  --news-rule-dark: rgba(246, 242, 234, 0.2);
  --news-tint: rgba(13, 27, 42, 0.05);
  --news-card: rgba(255, 255, 255, 0.66);
  background: var(--ice);
  color: var(--char);
}

.page-news h2 {
  font-family: var(--font-display);
  font-size: clamp(23px, 5.4vw, 38px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 10px 0 14px;
  color: var(--ink);
}

.page-news h3 {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.page-news .news-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  max-width: 38em;
  margin: 0 0 4px;
  color: var(--char);
}

.page-news .news-lead--dark {
  color: var(--ice);
  opacity: 0.88;
}

.page-news .news-block {
  padding: 54px 0;
}

/* ---------- 首屏 ---------- */
.page-news .news-masthead {
  padding-top: 22px;
}

.page-news .news-masthead__body {
  padding-bottom: 6px;
}

.page-news .news-masthead h1 {
  font-family: var(--font-display);
  font-size: clamp(29px, 8vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 14px 0 18px;
  color: var(--ink);
}

.page-news .news-masthead__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  background: var(--news-rule);
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-news .news-masthead__stats li {
  background: var(--ice);
  padding: 14px 16px;
}

.page-news .news-masthead__stats b {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 600;
  color: var(--maple);
  letter-spacing: 0;
}

.page-news .news-masthead__stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.page-news .news-masthead__figure {
  margin: 28px auto 0;
}

.page-news .news-masthead__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
}

/* ---------- 近期条目 ---------- */
.page-news .log-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--news-rule);
}

.page-news .log-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  grid-template-areas:
    "no tag when"
    "body .page-news body";
  align-items: start;
  gap: 6px 12px;
  padding: 16px 12px 16px 16px;
  border-top: 1px solid var(--news-rule);
  transition: background-color 0.25s var(--ease);
}

.page-news .log-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--maple);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.3s var(--ease);
}

.page-news .log-row:hover,
.page-news .log-row:focus-within {
  background: var(--news-tint);
}

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

.page-news .log-row__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  line-height: 1.9;
  color: var(--steel);
}

.page-news .log-row__tag {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  white-space: nowrap;
}

.page-news .log-row__tag::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--steel);
}

.page-news .log-row__tag--rule::before { background: var(--maple); }
.page-news .log-row__tag--fix::before { background: var(--amber); }
.page-news .log-row__tag--series::before { background: var(--lake); }
.page-news .log-row__tag--version::before { background: var(--steel); }
.page-news .log-row__tag--report::before { background: var(--ink-2); }

.page-news .log-row__when {
  grid-area: when;
  justify-self: end;
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  line-height: 1.9;
  color: var(--steel);
  white-space: nowrap;
}

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

.page-news .log-row__title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 2px 0 0;
  color: var(--ink);
}

.page-news .log-row__text {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) and (min-width: 900px) {
  .page-news .log-row:hover .log-row__text,
  .page-news .log-row:focus-within .log-row__text {
    -webkit-line-clamp: 8;
    color: var(--char);
  }
}

/* ---------- 按主题找 ---------- */
.page-news .topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
}

.page-news .topic-pills a {
  text-decoration: none;
}

.page-news .topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .topic {
  padding: 20px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .topic h3 {
  margin-bottom: 10px;
}

.page-news .topic p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--char);
}

.page-news .topic__who {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px dashed var(--news-rule);
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: var(--steel) !important;
}

/* ---------- 专题连载 ---------- */
.page-news .series-head {
  margin: 34px 0 12px;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

.page-news .series-strip {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 4px 28px 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.page-news .series-card {
  flex: 0 0 auto;
  width: min(68vw, 232px);
  scroll-snap-align: start;
  padding: 16px 18px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .series-card__no {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--maple);
}

.page-news .series-card--lake .series-card__no {
  color: var(--lake);
}

.page-news .series-card__title {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--char);
}

.page-news .series-figure {
  margin: 30px 0 0;
}

.page-news .series-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-rule);
  object-fit: cover;
}

.page-news .series-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel);
}

/* ---------- 年度报告 ---------- */
.page-news .news-report {
  margin-top: 20px;
  padding: 54px 0 58px;
  background: var(--ink);
  color: var(--ice);
}

.page-news .news-report h2 {
  color: var(--ice);
  margin-top: 14px;
}

.page-news .news-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.page-news .news-report__cover {
  margin: 0;
  max-width: 280px;
}

.page-news .news-report__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  object-fit: cover;
}

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

.page-news .report-chapters {
  list-style: none;
  counter-reset: ch;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--news-rule-dark);
}

.page-news .report-chapters li {
  counter-increment: ch;
  position: relative;
  padding: 15px 0 15px 46px;
  border-bottom: 1px solid var(--news-rule-dark);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(246, 242, 234, 0.84);
}

.page-news .report-chapters li::before {
  content: "0" counter(ch);
  position: absolute;
  left: 0;
  top: 17px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--amber);
}

.page-news .report-chapters strong {
  color: var(--ice);
  font-weight: 600;
}

.page-news .news-report__foot {
  margin: 20px 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(246, 242, 234, 0.72);
  max-width: 36em;
}

/* ---------- 更新节奏 ---------- */
.page-news .cadence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 24px;
  background: var(--news-rule);
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-news .cadence-item {
  background: var(--ice);
  padding: 20px;
}

.page-news .cadence-item__num {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--maple);
}

.page-news .cadence-item h3 {
  margin-bottom: 6px;
}

.page-news .cadence-item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
}

.page-news .cadence-figure {
  margin: 28px 0 0;
}

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

.page-news .subscribe {
  margin-top: 30px;
  padding: 22px 20px;
  border: 1px solid var(--news-rule);
  border-radius: var(--r-lg);
  background: var(--news-card);
}

.page-news .subscribe h3 {
  margin-bottom: 8px;
}

.page-news .subscribe p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--char);
  max-width: 36em;
}

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

.page-news .subscribe__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 18px;
  border: 1px solid var(--news-rule);
  border-radius: var(--pill);
  background: var(--ice);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--char);
}

.page-news .subscribe__input::placeholder {
  color: var(--steel);
}

.page-news .subscribe__input:focus-visible {
  outline: 2px solid var(--maple);
  outline-offset: 2px;
}

.page-news .subscribe__note {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: var(--steel) !important;
}

/* ---------- 后续入口 ---------- */
.page-news .news-next {
  padding-bottom: 76px;
}

.page-news .news-next__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .news-next__list li {
  border-bottom: 1px solid var(--news-rule);
}

.page-news .news-next__list a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.page-news .news-next__list a span {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}

.page-news .news-next__list a:hover {
  color: var(--char);
  padding-left: 12px;
}

/* ---------- 媒体查询 ---------- */
@media (min-width: 700px) {
  .page-news .news-block {
    padding: 68px 0;
  }

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

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

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

  .page-news .news-report {
    padding: 72px 0 76px;
  }
}

@media (min-width: 900px) {
  .page-news .log-row {
    grid-template-columns: 54px 118px minmax(0, 1fr) 116px;
    grid-template-areas: "no tag .page-news when";
    gap: 0 22px;
    padding: 20px 22px 20px 20px;
  }

  .page-news .log-row__no,
  .page-news .log-row__tag {
    line-height: 1.5;
    padding-top: 2px;
  }

  .page-news .log-row__title {
    font-size: 17px;
    margin-top: 0;
  }

  .page-news .news-report__grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
  }

  .page-news .news-report__cover {
    max-width: none;
  }
}

@media (min-width: 1100px) {
  .page-news .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-news .topic {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .log-row,
  .page-news .log-row::before,
  .page-news .log-row__text,
  .page-news .news-next__list a {
    transition: none;
  }
}
