.page-news {
  --news-rail: 320px;
  --news-line: rgba(143, 169, 172, 0.22);
  background: var(--ink);
  color: var(--moon);
  overflow-x: hidden;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--stone);
}

.page-news .breadcrumb__item a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.18s ease;
}

.page-news .breadcrumb__item a:hover,
.page-news .breadcrumb__item a:focus-visible {
  color: var(--cyan);
}

.page-news .breadcrumb__sep {
  margin: 0 8px;
  color: var(--shallow);
}

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

.page-news .news-head {
  position: relative;
  padding: 28px 0 44px;
  background:
    radial-gradient(120% 92% at 8% 0%, rgba(47, 227, 192, 0.15), transparent 58%),
    radial-gradient(92% 74% at 100% 6%, rgba(255, 106, 43, 0.13), transparent 62%),
    var(--ink);
  overflow: hidden;
}

.page-news .news-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 169, 172, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 169, 172, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  pointer-events: none;
}

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

.page-news .news-head__title {
  margin: 14px 0 18px;
  max-width: 20ch;
  color: var(--moon);
}

.page-news .news-head__lede {
  max-width: 58ch;
  margin: 0;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.8;
}

.page-news .news-head__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--news-line);
}

.page-news .news-stat dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 6px;
}

.page-news .news-stat dd {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  color: var(--cyan);
}

.page-news .news-head__note {
  display: none;
  position: absolute;
  right: 14px;
  top: 96px;
  color: var(--shallow);
}

/* ---------- 本期焦点 ---------- */

.page-news .news-focus {
  padding: 44px 0 8px;
}

.page-news .news-focus__grid {
  display: grid;
  gap: 26px;
}

.page-news .news-focus__text p {
  margin: 0 0 14px;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.8;
  max-width: 56ch;
}

.page-news .news-focus__btn {
  margin-top: 8px;
}

.page-news .news-focus__figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--news-line);
  background: var(--ink-2);
}

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

.page-news .news-sec-title {
  font-family: var(--font-display);
  font-size: clamp(23px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.01em;
  color: var(--moon);
  margin: 10px 0 14px;
  max-width: 22ch;
}

/* 对比切片 */

.page-news .cmp-slice {
  margin-top: 34px;
  padding: 20px 18px 24px;
  background: var(--ink-2);
  border: 1px solid var(--news-line);
  border-radius: var(--r-lg);
}

.page-news .cmp-slice__cap {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--shallow);
}

.page-news .cmp-slice__head {
  display: none;
}

.page-news .cmp-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-news .cmp-row:last-child {
  border-bottom: 0;
}

.page-news .cmp-row__key {
  font-size: 13px;
  color: var(--stone);
}

.page-news .cmp-row__track {
  display: block;
  height: 10px;
  border-radius: var(--pill);
  background: rgba(143, 169, 172, 0.14);
  overflow: hidden;
}

.page-news .cmp-fill {
  display: block;
  height: 100%;
  border-radius: var(--pill);
  width: 0;
  transition: width 0.6s ease-out;
}

.page-news .cmp-fill--a {
  background: linear-gradient(90deg, rgba(47, 227, 192, 0.45), var(--cyan));
}

.page-news .cmp-fill--b {
  background: linear-gradient(90deg, rgba(255, 106, 43, 0.45), var(--orange));
}

.page-news .cmp-row:nth-child(1) .cmp-fill--a { width: 82%; }
.page-news .cmp-row:nth-child(1) .cmp-fill--b { width: 61%; }
.page-news .cmp-row:nth-child(2) .cmp-fill--a { width: 68%; }
.page-news .cmp-row:nth-child(2) .cmp-fill--b { width: 74%; }
.page-news .cmp-row:nth-child(3) .cmp-fill--a { width: 57%; }
.page-news .cmp-row:nth-child(3) .cmp-fill--b { width: 63%; }
.page-news .cmp-row:nth-child(4) .cmp-fill--a { width: 45%; }
.page-news .cmp-row:nth-child(4) .cmp-fill--b { width: 78%; }

.page-news .cmp-row__gap {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  color: var(--orange);
}

.page-news .cmp-row:nth-child(1) .cmp-row__gap {
  color: var(--cyan);
}

/* ---------- 主体双栏 ---------- */

.page-news .news-body {
  padding: 36px 0 0;
}

.page-news .news-body__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

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

.page-news .news-block {
  padding: 36px 0 40px;
  border-top: 1px solid var(--news-line);
}

.page-news .news-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-news .news-block__intro {
  margin: 0 0 22px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  max-width: 60ch;
}

.page-news .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .entry {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.2s ease;
}

.page-news .entry:first-child {
  padding-top: 8px;
}

.page-news .entry:hover,
.page-news .entry:focus-within {
  background: linear-gradient(90deg, rgba(47, 227, 192, 0.07), transparent 72%);
}

.page-news .entry__stage {
  writing-mode: vertical-rl;
  justify-self: start;
  align-self: start;
  padding-top: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--shallow);
  white-space: nowrap;
  max-height: 84px;
  overflow: hidden;
}

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

.page-news .entry__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--moon);
}

.page-news .entry__sum {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--stone);
}

.page-news .entry__meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cyan);
  transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.2s ease;
}

.page-news .entry:hover .entry__meta,
.page-news .entry:focus-within .entry__meta {
  max-height: 44px;
  opacity: 1;
  transform: none;
}

.page-news .entry__meta span + span {
  color: var(--stone);
}

/* 区块配图 */

.page-news .news-figure {
  margin: 0 0 22px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}

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

.page-news .news-figure figcaption {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--shallow);
  border-top: 1px solid var(--line-soft);
}

.page-news .news-figure--injury {
  border-color: rgba(233, 166, 60, 0.32);
}

.page-news .news-figure--salary {
  border-color: rgba(192, 138, 62, 0.32);
}

.page-news .news-figure--version {
  border-color: rgba(47, 227, 192, 0.28);
}

.page-news .news-more {
  margin: 26px 0 0;
  font-size: 14px;
  color: var(--stone);
}

.page-news .news-more a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 227, 192, 0.4);
}

.page-news .news-more a:hover {
  color: var(--orange);
  border-bottom-color: rgba(255, 106, 43, 0.5);
}

/* ---------- 右侧栏 ---------- */

.page-news .news-rail {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.page-news .rail-card {
  padding: 20px 18px 22px;
  background: var(--ink-2);
  border: 1px solid var(--news-line);
  border-radius: var(--r-lg);
}

.page-news .rail-card--tags {
  background: linear-gradient(160deg, rgba(47, 227, 192, 0.09), rgba(12, 23, 32, 0) 60%), var(--ink-2);
}

.page-news .rail-card__lede {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
}

.page-news .rail-card__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--moon);
}

.page-news .rail-card__note {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--shallow);
}

.page-news .rail-facts {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 10px;
}

.page-news .rail-facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--stone);
}

.page-news .rail-facts strong {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
}

.page-news .tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--pill);
  border: 1px solid var(--news-line);
  background: transparent;
  color: var(--stone);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.page-news .tag-chip:hover,
.page-news .tag-chip:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.page-news .tag-chip--on {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--ink);
  font-weight: 600;
}

/* ---------- 底部 ---------- */

.page-news .news-cta {
  padding: 48px 0 72px;
  border-top: 1px solid var(--news-line);
}

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

.page-news .news-cta__grid {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.page-news .cta-panel {
  padding: 24px 20px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-line);
  background: linear-gradient(155deg, rgba(47, 227, 192, 0.1), rgba(12, 23, 32, 0) 62%), var(--ink-2);
}

.page-news .cta-panel--alt {
  background: linear-gradient(155deg, rgba(255, 106, 43, 0.11), rgba(12, 23, 32, 0) 62%), var(--ink-2);
}

.page-news .cta-panel__title {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--moon);
}

.page-news .cta-panel p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--stone);
  max-width: 52ch;
}

.page-news .news-cta__foot {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
}

.page-news .news-cta__foot a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 227, 192, 0.4);
}

.page-news .news-cta__foot a:hover {
  color: var(--orange);
  border-bottom-color: rgba(255, 106, 43, 0.5);
}

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

@media (min-width: 640px) {
  .page-news .cmp-slice {
    padding: 22px 24px 26px;
  }

  .page-news .cmp-row {
    grid-template-columns: 106px minmax(0, 1fr) minmax(0, 1fr) 52px;
    gap: 16px;
  }

  .page-news .cmp-slice__head {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr) minmax(0, 1fr) 52px;
    gap: 16px;
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--news-line);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--shallow);
  }

  .page-news .cmp-slice__head span:last-child {
    text-align: right;
  }

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

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

@media (min-width: 1024px) {
  .page-news .news-head {
    padding: 44px 0 64px;
  }

  .page-news .news-head__note {
    display: block;
  }

  .page-news .news-focus__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }

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

  .page-news .news-rail {
    position: sticky;
    top: calc(var(--header-h-compact) + 32px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .page-news .entry {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-news .cmp-fill,
  .page-news .entry,
  .page-news .entry__meta,
  .page-news .tag-chip {
    transition: none;
  }

  .page-news .entry__meta {
    transform: none;
  }
}
