.page-news {
  --news-sink: 48px;
  --news-gap: clamp(20px, 3.4vw, 48px);
  --news-pad: clamp(44px, 6.5vw, 96px);
  background: var(--ink-800);
  color: var(--white);
  padding-bottom: clamp(40px, 7vw, 96px);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--head-h) + clamp(28px, 5vw, 64px)) 0 clamp(38px, 6vw, 84px);
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(46, 125, 255, 0.16) 0%, rgba(46, 125, 255, 0) 62%),
    linear-gradient(162deg, var(--ink-700) 0%, var(--ink-800) 54%, var(--ink-900) 100%);
}

.page-news .news-hero::before,
.page-news .news-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-news .news-hero::before {
  left: 32%;
  right: -12%;
  bottom: -34%;
  height: 76%;
  background: var(--flame);
  opacity: 0.13;
  clip-path: polygon(20% 0, 100% 14%, 100% 100%, 0 100%);
}

.page-news .news-hero::after {
  top: -24%;
  right: -16%;
  width: 48%;
  height: 148%;
  background: linear-gradient(180deg, rgba(217, 178, 95, 0.2), rgba(217, 178, 95, 0));
  clip-path: polygon(40% 0, 100% 0, 64% 100%, 0 100%);
  transform: rotate(-7deg);
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--news-gap);
  align-items: end;
}

.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(16px, 3vw, 30px);
  padding: 0;
  list-style: none;
}

.page-news .breadcrumb a,
.page-news .breadcrumb li[aria-current] {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mist);
  text-decoration: none;
}

.page-news .breadcrumb li[aria-current] {
  color: var(--sand);
}

.page-news .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--ink-600);
}

.page-news .news-hero__title {
  margin: 14px 0 20px;
  font-size: clamp(34px, 7.4vw, 92px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-news .news-hero__lead {
  max-width: 34em;
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.86);
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .hero-chip {
  padding-left: 10px;
  border-left: 2px solid var(--flame);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: var(--mist);
}

.page-news .news-hero__media {
  margin: 0;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px rgba(5, 19, 15, 0.55);
}

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

/* ---------- 主线带 ---------- */
.page-news .topic-band {
  background: var(--ink-700);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 38px) 0;
}

.page-news .topic-band__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.page-news .topic-band__label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sand);
}

.page-news .topic-band__note {
  margin: 0;
  max-width: 40em;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

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

.page-news .topic-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(217, 178, 95, 0.55);
  border-radius: 999px;
  color: var(--sand);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.page-news .topic-tag:hover,
.page-news .topic-tag:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink-900);
}

/* ---------- 条目列表 ---------- */
.page-news .news-latest {
  padding-top: var(--news-pad);
  padding-bottom: var(--news-pad);
}

.page-news .section-head {
  max-width: 46em;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.page-news .section-head__note {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
}

.page-news .entry-grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .entry {
  position: relative;
  padding: 20px 0 6px;
  border-top: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease);
}

.page-news .entry:hover,
.page-news .entry:focus-within {
  border-color: var(--flame);
}

.page-news .entry__top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.page-news .entry__no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--flame);
}

.page-news .entry__tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sand);
}

.page-news .entry__title {
  margin: 0 0 10px;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.page-news .entry__title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.24s var(--ease);
}

.page-news .entry__title a:hover,
.page-news .entry__title a:focus-visible {
  color: var(--flame-soft);
}

.page-news .entry__sum {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.78);
}

.page-news .entry__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 14px;
}

.page-news .entry__time {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-news .entry__cue {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 125, 255, 0.42);
  transition: color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.page-news .entry__cue:hover,
.page-news .entry__cue:focus-visible {
  color: var(--flame-soft);
  border-color: var(--flame-soft);
}

/* ---------- 专题块通用 ---------- */
.page-news .topic-block {
  padding: var(--news-pad) 0;
  border-top: 1px solid var(--line);
}

.page-news .topic-block__grid {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
}

.page-news .anchor-stat {
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
}

.page-news .anchor-stat:first-of-type {
  margin-top: 22px;
}

.page-news .anchor-stat__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--mist);
}

.page-news .topic-media {
  margin: 0 0 clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
}

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

.page-news .topic-intro {
  margin: 0 0 clamp(20px, 3vw, 32px);
  max-width: 34em;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.82);
}

.page-news .topic-part {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.page-news .topic-part:last-child {
  margin-bottom: 0;
}

.page-news .topic-body h3 {
  margin: 0 0 12px;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.42;
  color: var(--white);
}

.page-news .topic-body h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--flame);
}

.page-news .topic-body p {
  max-width: 34em;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(244, 247, 245, 0.8);
}

.page-news .clip-note {
  max-width: 36em;
  margin: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--blue);
  background: rgba(18, 60, 48, 0.55);
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(244, 247, 245, 0.86);
}

.page-news .topic-footnote {
  max-width: 36em;
  margin: clamp(20px, 3vw, 32px) 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mist);
}

.page-news .inline-link {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 125, 255, 0.42);
}

.page-news .inline-link:hover,
.page-news .inline-link:focus-visible {
  color: var(--flame-soft);
  border-color: var(--flame-soft);
}

.page-news .inline-link--strong {
  color: var(--sand);
  border-color: rgba(217, 178, 95, 0.5);
}

/* ---------- 时间刻度档案 ---------- */
.page-news .timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  list-style: none;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--sand), rgba(217, 178, 95, 0.06));
}

.page-news .timeline li {
  position: relative;
  padding-bottom: clamp(22px, 3vw, 34px);
}

.page-news .timeline li:last-child {
  padding-bottom: 0;
}

.page-news .timeline li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -26px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--sand);
  border-radius: 50%;
  background: var(--ink-800);
}

.page-news .timeline__year {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--sand);
}

.page-news .timeline__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}

.page-news .timeline__desc {
  margin: 0;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.78);
}

/* ---------- 牌面对照表 ---------- */
.page-news .table-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin: 0 0 12px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-news .table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--ink-700);
}

.page-news .record-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.page-news .record-table__cap {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mist);
  background: var(--ink-800);
  border-bottom: 1px solid var(--line);
}

.page-news .record-table th,
.page-news .record-table td {
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}

.page-news .record-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--ink-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mist);
}

.page-news .record-table tbody tr:nth-child(even) {
  background: rgba(18, 60, 48, 0.42);
}

.page-news .cell-code {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--sand);
}

.page-news .cell-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--white);
}

.page-news .cell-num--red {
  color: var(--flame);
}

.page-news .bar {
  display: inline-block;
  vertical-align: middle;
  width: 96px;
  height: 8px;
  margin-right: 10px;
  border-radius: 4px;
  background: rgba(157, 179, 170, 0.18);
  overflow: hidden;
}

.page-news .bar > span {
  display: block;
  height: 100%;
  width: var(--bar, 50%);
  background: linear-gradient(90deg, var(--sand), var(--flame));
}

/* ---------- 订阅区 ---------- */
.page-news .subscribe {
  padding: var(--news-pad) 0 0;
  border-top: 1px solid var(--line);
}

.page-news .subscribe__grid {
  display: grid;
  gap: clamp(22px, 3.4vw, 44px);
}

.page-news .subscribe__panel {
  padding: clamp(24px, 3.6vw, 44px);
  background: linear-gradient(150deg, rgba(30, 86, 67, 0.6), rgba(11, 43, 34, 0.92));
  border: 1px solid var(--line-strong);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.page-news .subscribe__title {
  margin: 12px 0 16px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.32;
  color: var(--white);
}

.page-news .subscribe__text {
  max-width: 34em;
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.82);
}

.page-news .subscribe__contact {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--flame);
  word-break: break-all;
}

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

.page-news .aside-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.24s var(--ease), color 0.24s var(--ease), background 0.24s var(--ease);
}

.page-news .aside-list a:hover,
.page-news .aside-list a:focus-visible {
  border-color: var(--flame);
  color: var(--flame-soft);
  background: rgba(255, 92, 26, 0.06);
}

.page-news .aside-list span {
  flex: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* ---------- 媒体查询 ---------- */
@media (min-width: 720px) {
  .page-news .topic-band__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .page-news .topic-band__list li {
    display: flex;
  }

  .page-news .topic-tag {
    width: 100%;
    text-align: center;
  }

  .page-news .bar {
    width: 120px;
  }
}

@media (min-width: 900px) {
  .page-news .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(30px, 4.5vw, 68px);
    padding-bottom: var(--news-sink);
  }

  .page-news .entry-grid > .entry:nth-child(odd) {
    transform: translateY(var(--news-sink));
  }

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

  .page-news .subscribe__panel {
    grid-column: 1 / span 7;
  }

  .page-news .subscribe__aside {
    grid-column: 9 / span 4;
    align-self: start;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 56px);
  }

  .page-news .news-hero__copy {
    grid-column: 1 / span 7;
  }

  .page-news .news-hero__media {
    grid-column: 8 / span 5;
    margin-bottom: -7%;
  }

  .page-news .topic-band__inner {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 32px;
  }
}

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

  .page-news .topic-anchor {
    grid-column: 1 / span 3;
    position: sticky;
    top: calc(var(--head-h) + 28px);
    align-self: start;
  }

  .page-news .topic-body {
    grid-column: 4 / span 9;
  }
}
</style>

.page-news {
  --bar: 1rem;
}
