.page-news {
  --news-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --news-display: "Helvetica Neue", "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--chalk);
  color: var(--carbon);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: clip;
}

.page-news h1,
.page-news h2,
.page-news h3,
.page-news h4 {
  font-family: var(--news-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.page-news p {
  margin: 0;
}

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

.page-news .figure__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(140deg, var(--brick-deep) 0%, var(--ink) 58%, var(--ink-soft) 100%);
}

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

.page-news .figure__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--silver-dim);
}

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

.page-news .column-hero {
  padding: clamp(20px, 3vw, 34px) 0 0;
}

.page-news .column-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-news .column-hero__title {
  margin-top: 14px;
  font-size: clamp(30px, 5.2vw, 54px);
  letter-spacing: -0.015em;
}

.page-news .column-hero__lead {
  margin-top: 18px;
  max-width: 60ch;
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  color: #2e3742;
}

.page-news .column-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: var(--hair);
  font-family: var(--news-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
}

.page-news .side-card {
  background: var(--ink);
  color: var(--timer-white);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-soft);
}

.page-news .side-card__label {
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--lime);
}

.page-news .side-card__value {
  margin-top: 10px;
  font-family: var(--news-display);
  font-size: clamp(38px, 6vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.page-news .side-card__rows {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.page-news .side-card__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 205, 210, 0.22);
  font-size: 14px;
}

.page-news .side-card__row span:first-child {
  color: var(--silver);
}

.page-news .side-card__row span:last-child {
  font-family: var(--news-mono);
  letter-spacing: 0.08em;
  color: var(--timer-white);
}

.page-news .column-hero__figure {
  margin-top: clamp(22px, 3vw, 34px);
}

.page-news .column-hero__figure .figure__media {
  aspect-ratio: 16 / 7;
}

/* ---------- 栏目胶囊带 ---------- */

.page-news .column-filter {
  padding: clamp(26px, 4vw, 42px) 0 0;
}

.page-news .column-filter__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: var(--timer-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-news .column-filter__label {
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--silver-dim);
}

.page-news .column-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .column-tabs::-webkit-scrollbar {
  display: none;
}

.page-news .column-tabs__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14, 26, 43, 0.14);
  font-size: 14px;
  font-weight: 600;
  color: var(--carbon);
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-news .column-tabs__link:hover,
.page-news .column-tabs__link:focus-visible {
  border-color: var(--lime);
  background: rgba(198, 243, 43, 0.18);
}

.page-news .column-tabs__link--all {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--timer-white);
}

.page-news .column-tabs__link--all:hover,
.page-news .column-tabs__link--all:focus-visible {
  background: var(--brick-deep);
  border-color: var(--brick-deep);
  color: var(--timer-white);
}

/* ---------- 列表骨架 ---------- */

.page-news .column-list {
  padding: clamp(34px, 5vw, 58px) 0 0;
}

.page-news .section-head {
  margin-bottom: 24px;
}

.page-news .section-head h2 {
  margin-top: 12px;
  font-size: clamp(24px, 3.2vw, 34px);
}

.page-news .section-head__note {
  margin-top: 10px;
  max-width: 66ch;
  font-size: 15px;
  color: var(--silver-dim);
}

.page-news .column-list__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-news .column-list__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-news .figure__media--sprint {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
}

.page-news .aside-note {
  background: var(--timer-white);
  border: var(--hair);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.page-news .aside-note__label {
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--brick);
}

.page-news .aside-note p {
  margin-top: 9px;
  font-size: 14.5px;
  color: #3a424b;
}

.page-news .aside-note__link {
  padding-top: 12px;
  border-top: var(--hair);
}

/* ---------- 分组 ---------- */

.page-news .group + .group {
  margin-top: clamp(30px, 4vw, 46px);
}

.page-news .group__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--brick);
}

.page-news .group__title {
  font-size: clamp(19px, 2.2vw, 24px);
}

.page-news .group__note {
  margin-left: auto;
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--silver-dim);
}

/* ---------- 展签式条目 ---------- */

.page-news .entries {
  display: grid;
  gap: 14px;
}

.page-news .entry {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 20px 18px;
  background: var(--timer-white);
  border: 1px solid rgba(14, 26, 43, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-news .entry__plate {
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(178, 58, 46, 0.28);
  background: linear-gradient(160deg, rgba(178, 58, 46, 0.15), rgba(178, 58, 46, 0.04));
  color: var(--brick-deep);
  font-family: var(--news-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.page-news .entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
}

.page-news .entry__title {
  font-size: clamp(16.5px, 1.8vw, 19px);
  font-weight: 800;
}

.page-news .entry__excerpt {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.72;
  color: #3a424b;
}

.page-news .entry__foot {
  margin-top: 12px;
}

.page-news .entry__link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(178, 58, 46, 0.38);
  font-family: var(--news-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--brick);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .entry__link:hover,
.page-news .entry__link:focus-visible {
  color: var(--brick-deep);
  border-color: var(--brick-deep);
}

@media (hover: hover) {
  .page-news .entry:hover {
    transform: translateY(-3px) rotate(-0.8deg);
    box-shadow: var(--shadow-lift);
  }
}

.page-news .stream-more {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

/* ---------- 深色手记精选 ---------- */

.page-news .notes-feature {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 66px);
  padding: clamp(30px, 4.5vw, 56px) 0;
  background: var(--ink);
  color: var(--timer-white);
}

.page-news .notes-feature::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 58%;
  height: 150%;
  background: linear-gradient(100deg, transparent 0%, rgba(198, 243, 43, 0.1) 52%, transparent 100%);
  transform: rotate(9deg);
  pointer-events: none;
}

.page-news .notes-feature__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.page-news .notes-feature .stage-tag--on-dark {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(198, 243, 43, 0.5);
  background: rgba(198, 243, 43, 0.12);
  color: var(--lime);
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
}

.page-news .notes-feature__title {
  margin-top: 16px;
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--timer-white);
}

.page-news .notes-feature__lead {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 16px;
  color: #dce2e8;
}

.page-news .notes-feature__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .notes-feature__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #dce2e8;
}

.page-news .notes-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 13px;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
}

.page-news .notes-feature__figure .figure__media {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--ink-soft), var(--brick-deep));
}

.page-news .notes-feature__figure .figure__caption {
  color: var(--silver);
}

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

.page-news .topics {
  padding: clamp(42px, 5.5vw, 74px) 0 0;
}

.page-news .topic-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.page-news .topic-band__figure .figure__media {
  aspect-ratio: 7 / 4;
  border-radius: var(--radius-lg);
}

.page-news .topics__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-content: start;
}

.page-news .topic {
  background: var(--timer-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brick);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.page-news .topic:nth-child(2) {
  border-left-color: var(--brick-deep);
}

.page-news .topic:nth-child(3) {
  border-left-color: var(--lime);
}

.page-news .topic:nth-child(4) {
  border-left-color: var(--ink);
}

.page-news .topic__no {
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--silver-dim);
}

.page-news .topic__title {
  margin-top: 8px;
  font-size: 17px;
}

.page-news .topic__text {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #3a424b;
}

/* ---------- 订阅与线索 ---------- */

.page-news .subscribe {
  padding: clamp(44px, 6vw, 78px) 0 clamp(34px, 5vw, 58px);
}

.page-news .subscribe__panel {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(140deg, var(--brick) 0%, var(--brick-deep) 56%, var(--ink) 100%);
  color: var(--timer-white);
  box-shadow: var(--shadow-lift);
}

.page-news .subscribe__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.page-news .subscribe__label {
  font-family: var(--news-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--lime);
}

.page-news .subscribe__title {
  margin-top: 12px;
  font-size: clamp(23px, 3.2vw, 34px);
  color: var(--timer-white);
}

.page-news .subscribe__text {
  margin-top: 14px;
  max-width: 60ch;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.88);
}

.page-news .subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-news .subscribe__mail {
  flex: 1 1 100%;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--news-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--timer-white);
  word-break: break-all;
}

.page-news .subscribe__note {
  flex: 1 1 100%;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

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

@media (min-width: 640px) {
  .page-news .column-filter__inner {
    padding: 18px 22px;
  }
}

@media (min-width: 900px) {
  .page-news .column-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 42px;
    align-items: end;
  }

  .page-news .column-filter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: var(--radius-pill);
  }

  .page-news .notes-feature__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 46px;
    align-items: center;
  }

  .page-news .subscribe__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 44px;
    align-items: center;
  }

  .page-news .subscribe__actions {
    align-content: start;
  }
}

@media (min-width: 940px) {
  .page-news .topic-band {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 36px;
    align-items: start;
  }

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

@media (min-width: 1000px) {
  .page-news .column-list__grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 44px;
    align-items: start;
  }

  .page-news .column-list__aside {
    position: sticky;
    top: 104px;
  }
}

@media (max-width: 520px) {
  .page-news .entry {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .page-news .entry__plate {
    justify-self: start;
    min-width: 62px;
    min-height: 34px;
    padding: 6px 12px;
  }
}
<<<END>>>
