.page-news {
  --news-line: rgba(18, 96, 74, .78);
  --news-line-soft: rgba(18, 96, 74, .45);
  --news-card: rgba(11, 51, 42, .72);
  --news-card-deep: rgba(6, 32, 25, .9);
  overflow-x: clip;
  position: relative;
}

/* ---------- 通用段落头 ---------- */
.page-news .section-head {
  max-width: 68ch;
  margin-bottom: clamp(22px, 3.4vw, 38px);
}

.page-news .section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 4.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -.015em;
}

.page-news .section-lede {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--mist-200);
}

.page-news .list-note,
.page-news .archive-note {
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mist-200);
}

.page-news .list-note a,
.page-news .archive-note a {
  color: var(--lime-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding-block: clamp(18px, 3vw, 34px) clamp(36px, 6vw, 76px);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 2%;
  right: -16%;
  width: min(640px, 82vw);
  height: min(470px, 54vw);
  background: linear-gradient(142deg, rgba(217, 246, 63, .16), rgba(255, 138, 43, .06) 58%, transparent 82%);
  clip-path: polygon(22% 0%, 100% 0%, 76% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.page-news .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.page-news .hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 7.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -.025em;
}

.page-news .hero-lede {
  margin: 0 0 24px;
  max-width: 46ch;
  font-size: clamp(15px, 1.7vw, 17.5px);
  line-height: 1.8;
  color: var(--mist-200);
}

.page-news .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .hero-figure {
  margin: 0;
  position: relative;
}

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

.page-news .hero-cap {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
  color: var(--mist-200);
}

@media (min-width: 900px) {
  .page-news .hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 44px;
  }
  .page-news .hero-figure {
    transform: translateY(18px);
  }
}

/* ---------- 分类筛选 ---------- */
.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.page-news .filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--news-line);
  background: rgba(11, 51, 42, .6);
  color: var(--mist-200);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.page-news .filter-pill:hover {
  border-color: var(--lime-500);
  color: var(--lime-300);
}

.page-news .filter-input:checked + .filter-pill {
  background: var(--lime-500);
  border-color: var(--lime-500);
  color: var(--ink-950);
}

.page-news .filter-input:focus-visible + .filter-pill {
  outline: 2px solid var(--lime-300);
  outline-offset: 2px;
}

.page-news #filter-data:checked + .filter-pill {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--char-900);
}

/* 前端筛选：不支持 :has 时全部展开，内容依旧完整 */
.page-news:has(#filter-round:checked) .report-item:not([data-cat="round"]) {
  display: none;
}
.page-news:has(#filter-data:checked) .report-item:not([data-cat="data"]) {
  display: none;
}
.page-news:has(#filter-series:checked) .report-item:not([data-cat="series"]) {
  display: none;
}
.page-news:has(#filter-stands:checked) .report-item:not([data-cat="stands"]) {
  display: none;
}

/* ---------- 报告条目流 ---------- */
.page-news .report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-news .report-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px 18px 18px 14px;
  border: 1px solid var(--news-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, var(--news-card), var(--news-card-deep));
}

.page-news .report-round {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 2px;
}

.page-news .report-round::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: -22px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(217, 246, 63, .55), rgba(217, 246, 63, 0));
}

.page-news .report-list > .report-item:last-child .report-round::after {
  content: none;
}

.page-news .report-round__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime-500);
  font-variant-numeric: tabular-nums;
}

.page-news .report-round__lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--mist-200);
}

.page-news .report-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.page-news .report-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.page-news .report-tag--round {
  background: rgba(217, 246, 63, .13);
  border: 1px solid rgba(217, 246, 63, .38);
  color: var(--lime-300);
}

.page-news .report-tag--data {
  background: rgba(255, 138, 43, .14);
  border: 1px solid rgba(255, 138, 43, .42);
  color: var(--amber-300);
}

.page-news .report-time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--mist-200);
}

.page-news .report-title {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.35;
  letter-spacing: -.01em;
}

.page-news .report-more {
  margin-top: 4px;
}

.page-news .report-more summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--amber-300);
  cursor: pointer;
  list-style: none;
}

.page-news .report-more summary::-webkit-details-marker {
  display: none;
}

.page-news .report-more summary::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .18s var(--ease);
}

.page-news .report-more[open] summary::before {
  transform: rotate(45deg);
}

.page-news .report-more summary:focus-visible {
  outline: 2px solid var(--lime-300);
  outline-offset: 3px;
}

.page-news .report-more p {
  margin: 10px 0 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist-200);
}

@media (min-width: 900px) {
  .page-news .report-item {
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 22px 26px 22px 18px;
  }
  .page-news .report-item:nth-child(3n + 2) {
    padding-block: 30px;
  }
  .page-news .report-round__num {
    font-size: 36px;
  }
  .page-news .report-round::after {
    top: 56px;
  }
}

/* ---------- 射手榜归档 ---------- */
.page-news .table-scroll {
  overflow-x: auto;
  border: 1px solid var(--news-line);
  border-radius: var(--radius-lg);
  background: rgba(6, 32, 25, .5);
}

.page-news .snap-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-news .snap-table caption {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--mist-200);
  border-bottom: 1px solid var(--news-line);
}

.page-news .snap-table th {
  padding: 12px 18px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--mist-200);
  white-space: nowrap;
  border-bottom: 1px solid var(--news-line);
}

.page-news .snap-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--news-line-soft);
  font-variant-numeric: tabular-nums;
}

.page-news .snap-table tbody tr:nth-child(odd) {
  background: rgba(18, 96, 74, .15);
}

.page-news .snap-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-news .cell-round {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--lime-500);
  white-space: nowrap;
}

.page-news .th-num,
.page-news .cell-num {
  text-align: right;
  font-family: var(--font-mono);
  white-space: nowrap;
}

.page-news .cell-move {
  color: var(--amber-500);
  font-weight: 700;
}

.page-news .trend-figure {
  margin: clamp(24px, 3.4vw, 40px) 0 0;
}

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

.page-news .trend-cap {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--mist-200);
}

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

.page-news .series-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 24px;
  border: 1px solid var(--news-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--news-card), var(--news-card-deep));
}

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

.page-news .series-card--text {
  justify-content: center;
  background: linear-gradient(170deg, rgba(217, 246, 63, .09), var(--news-card-deep));
  border-color: rgba(217, 246, 63, .3);
}

.page-news .series-body h3 {
  margin: 12px 0 8px;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.24;
}

.page-news .series-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist-200);
}

@media (min-width: 900px) {
  .page-news .series-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 30px;
  }
  .page-news .series-card--offset {
    margin-top: 66px;
  }
}

/* ---------- 赛季纵览 ---------- */
.page-news .season-band {
  position: relative;
  padding-block: clamp(34px, 5vw, 62px);
}

.page-news .season-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(217, 246, 63, .1), rgba(255, 138, 43, .06) 46%, transparent 78%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  pointer-events: none;
}

.page-news .season-band .container {
  position: relative;
  z-index: 1;
}

.page-news .season-band h2 {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.14;
}

.page-news .season-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.page-news .season-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid var(--lime-500);
}

.page-news .season-num {
  font-family: var(--font-mono);
  font-size: clamp(30px, 5.4vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lime-500);
  font-variant-numeric: tabular-nums;
}

.page-news .season-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mist-200);
}

@media (min-width: 900px) {
  .page-news .season-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

/* ---------- 回访入口 ---------- */
.page-news .news-cta {
  padding-block: clamp(38px, 6vw, 80px) clamp(52px, 7vw, 96px);
}

.page-news .cta-shell {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(217, 246, 63, .3);
  border-radius: var(--radius-lg);
  background: linear-gradient(122deg, rgba(217, 246, 63, .1), rgba(6, 32, 25, .3) 68%);
}

.page-news .cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.8vw, 36px);
  line-height: 1.14;
}

.page-news .cta-copy p {
  margin: 0;
  max-width: 56ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--mist-200);
}

.page-news .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

@media (min-width: 900px) {
  .page-news .cta-shell {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 34px;
  }
  .page-news .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition: none !important;
    animation: none !important;
  }
}
