.page-news {
  --news-hair: rgba(110, 122, 117, 0.28);
  --news-hair-strong: rgba(139, 150, 145, 0.55);
  --news-panel: var(--pitch-800);
  display: block;
  padding-bottom: clamp(40px, 7vw, 88px);
}

/* ---------- 首屏 ---------- */
.page-news .breadcrumb {
  padding-top: clamp(16px, 3vw, 30px);
  font-size: 13px;
}

.page-news .news-hero {
  position: relative;
  padding: clamp(22px, 4vw, 44px) 0 clamp(30px, 5vw, 56px);
  border-bottom: 1px solid var(--news-hair);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: clamp(72px, 20vw, 220px);
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 180, 55, 0), var(--gold));
}

.page-news .news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.page-news .news-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.page-news .news-hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--tactic);
}

.page-news .news-hero__lead {
  margin: 20px 0 0;
  max-width: 62ch;
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.82);
}

.page-news .news-status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: clamp(24px, 4vw, 36px) 0 0;
  padding: 0;
  background: var(--news-hair-strong);
  border: 1px solid var(--news-hair);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.page-news .news-status__cell {
  margin: 0;
  padding: 16px 18px;
  background: var(--news-panel);
}

.page-news .news-status dt {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--line-bright);
}

.page-news .news-status dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--tactic);
}

/* ---------- 章节通用 ---------- */
.page-news .news-section {
  padding: clamp(40px, 6vw, 74px) 0;
  border-bottom: 1px solid var(--news-hair);
}

.page-news .news-tags {
  border-bottom: 0;
}

.page-news .news-head {
  margin: 0 0 clamp(20px, 3vw, 34px);
}

.page-news .news-head__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

.page-news .news-head h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--tactic);
}

.page-news .news-head__note {
  margin: 12px 0 0;
  max-width: 60ch;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.8;
  color: var(--line-bright);
}

/* ---------- 最新一批 ---------- */
.page-news .batch-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.page-news .batch-item {
  position: relative;
  padding: 20px 24px 20px 26px;
  background: var(--news-panel);
  border: 1px solid var(--news-hair);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: transform 220ms ease-out, border-color 220ms ease-out;
}

.page-news .batch-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--csl-red);
}

.page-news .batch-item--post::before {
  background: var(--cl-blue);
}

.page-news .batch-item:hover {
  transform: translateY(-2px);
  border-color: var(--news-hair-strong);
}

.page-news .batch-item__round {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
}

.page-news .batch-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.3vw, 21px);
  font-weight: 700;
  line-height: 1.42;
  color: var(--tactic);
}

.page-news .batch-item__body {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(244, 247, 245, 0.72);
}

.page-news .batch-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

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

.page-news .news-jump a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(242, 180, 55, 0.5);
  padding-bottom: 2px;
}

.page-news .news-jump a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

/* ---------- 赛前 / 赛后 双列 ---------- */
.page-news .column-grid {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.page-news .note-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--news-panel);
  border: 1px solid var(--news-hair);
  border-top: 4px solid var(--csl-red);
}

.page-news .note-column--post {
  border-top-color: var(--cl-blue);
}

.page-news .note-column__kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--line-bright);
}

.page-news .note-column__title {
  margin: -8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 27px);
  font-weight: 900;
  line-height: 1.24;
  color: var(--tactic);
}

.page-news .note-column__body {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.8);
}

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

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

.page-news .news-figure .figure__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--line-bright);
}

/* ---------- 轮次轨道笔记列表 ---------- */
.page-news .note-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
}

.page-news .note-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed rgba(214, 40, 40, 0.6);
}

.page-news .note-list--post::before {
  border-left-color: rgba(27, 108, 168, 0.75);
}

.page-news .note-item {
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid rgba(110, 122, 117, 0.18);
}

.page-news .note-item:last-child {
  border-bottom: 0;
}

.page-news .note-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 22px;
  width: 9px;
  height: 9px;
  background: var(--csl-red);
  transform: rotate(45deg);
}

.page-news .note-list--post .note-item::before {
  background: var(--cl-blue);
}

.page-news .note-item__round {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

.page-news .note-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--tactic);
}

.page-news .note-item__meta {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--line-bright);
}

/* ---------- 指标观察 ---------- */
.page-news .metric-grid {
  display: grid;
  gap: 14px;
}

.page-news .metric-note {
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, rgba(20, 67, 47, 0.92), rgba(11, 43, 31, 0.92));
  border: 1px solid var(--news-hair);
  border-left: 3px solid var(--stoppage);
}

.page-news .metric-note--running {
  border-left-color: var(--cyan);
}

.page-news .metric-note__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--line-bright);
}

.page-news .metric-note__figure {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.page-news .metric-note__num {
  font-family: var(--font-num);
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--stoppage);
}

.page-news .metric-note--running .metric-note__num {
  color: var(--cyan);
}

.page-news .metric-note__unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--line-bright);
}

.page-news .metric-spark {
  display: block;
  height: 58px;
  margin: 14px 0 12px;
  color: var(--stoppage);
}

.page-news .metric-note--running .metric-spark {
  color: var(--cyan);
}

.page-news .metric-spark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-news .metric-note__body {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(244, 247, 245, 0.78);
}

/* ---------- 专题与系列 ---------- */
.page-news .series-grid {
  display: grid;
  gap: 18px;
}

.page-news .series-card {
  padding: 16px 16px 22px;
  background: rgba(20, 67, 47, 0.55);
  border: 1px solid var(--news-hair);
}

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

.page-news .series-card__title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--tactic);
}

.page-news .series-card__body {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.78);
}

.page-news .series-card__more {
  margin: 14px 0 0;
}

.page-news .series-card__more a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(242, 180, 55, 0.5);
}

.page-news .series-card__more a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

/* ---------- 标签与订阅 ---------- */
.page-news .tag-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.page-news .tag-chip {
  display: inline-block;
  padding: 8px 15px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--tactic);
  background: rgba(20, 67, 47, 0.68);
  border: 1px solid var(--news-hair-strong);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.page-news .tag-chip--gold {
  color: var(--gold);
  border-color: rgba(242, 180, 55, 0.5);
}

.page-news .tag-chip--cyan {
  color: var(--cyan);
  border-color: rgba(53, 242, 192, 0.45);
}

.page-news .tag-chip--red {
  color: #FF9C9C;
  border-color: rgba(214, 40, 40, 0.62);
}

.page-news .tag-chip--blue {
  color: #8FC9EC;
  border-color: rgba(27, 108, 168, 0.75);
}

.page-news .subscribe-block {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(11, 43, 31, 0.72);
  border: 1px solid var(--news-hair);
  border-left: 3px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.page-news .subscribe-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.8vw, 26px);
  font-weight: 900;
  line-height: 1.28;
  color: var(--tactic);
}

.page-news .subscribe-block__body {
  margin: 12px 0 0;
  max-width: 64ch;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(244, 247, 245, 0.78);
}

.page-news .subscribe-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

/* ---------- 平板与桌面 ---------- */
@media (min-width: 700px) {
  .page-news .news-status {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .batch-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .page-news .column-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-news .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .page-news .series-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    gap: clamp(22px, 3vw, 40px);
  }

  .page-news .series-card--offset {
    margin-top: clamp(20px, 4vw, 56px);
  }
}

@media (hover: hover) and (min-width: 720px) {
  .page-news .note-item__meta {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 200ms ease-out, transform 200ms ease-out;
  }

  .page-news .note-item:hover .note-item__meta,
  .page-news .note-item:focus-within .note-item__meta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .batch-item {
    transition: none;
  }

  .page-news .batch-item:hover {
    transform: none;
  }

  .page-news .note-item__meta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
