.page-news {
  --news-rail-pad: 0px;
  --news-gutter: clamp(18px, 4vw, 48px);
  position: relative;
  padding-bottom: 96px;
  overflow-x: clip;
}

.page-news .eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-news .eyebrow--turf {
  color: #5FE3C0;
}

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

.page-news .section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--silver);
}

.page-news .section-lead {
  margin: 0;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dust);
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumbs {
  padding-top: 116px;
}

.page-news .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
  color: var(--dust);
}

.page-news .crumb-item a {
  color: var(--dust);
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.page-news .crumb-item a:hover {
  color: var(--cyan);
}

.page-news .crumb-sep {
  color: rgba(147, 162, 192, 0.5);
}

/* ---------- 首屏 ---------- */
.news-hero {
  display: grid;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.news-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 12vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--silver);
  background: linear-gradient(96deg, var(--silver) 0%, var(--silver) 52%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-hero-lead {
  margin: 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-ink);
}

.news-hero-side {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(14px);
}

.news-side-title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

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

.news-flash-item {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid rgba(22, 240, 220, 0.35);
}

.news-flash-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pulse);
}

.news-flash-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body-ink);
}

/* ---------- 跳转芯片 ---------- */
.news-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 8px;
}

.page-news .news-jump .chip {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(232, 238, 249, 0.04);
  color: var(--dust);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.page-news .news-jump .chip:hover,
.page-news .news-jump .chip:focus-visible {
  color: var(--silver);
  border-color: rgba(22, 240, 220, 0.5);
  background: rgba(22, 240, 220, 0.1);
}

.page-news .news-jump .chip.is-active {
  color: var(--cyan);
  border-color: rgba(22, 240, 220, 0.6);
}

/* ---------- 内容流与时间线轨道 ---------- */
.news-stream {
  position: relative;
  padding-top: 40px;
}

.news-section {
  position: relative;
  scroll-margin-top: 120px;
}

.news-section + .news-section {
  margin-top: 88px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

/* ---------- 图片容器 ---------- */
.news-figure {
  position: relative;
  margin: 0 0 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--hull);
}

.news-figure[data-ratio="16/9"] { aspect-ratio: 16 / 9; }
.news-figure[data-ratio="3/2"] { aspect-ratio: 3 / 2; }

.news-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
}

.news-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 10, 24, 0) 42%, rgba(5, 10, 24, 0.62) 100%);
}

/* ---------- 编辑台精选 ---------- */
.picks {
  display: grid;
  gap: 18px;
}

.pick {
  position: relative;
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--hull);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.pick:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 240, 220, 0.42);
  box-shadow: var(--shadow-lift);
}

.pick--lead {
  background:
    linear-gradient(150deg, rgba(122, 92, 255, 0.16) 0%, rgba(5, 10, 24, 0) 58%),
    var(--hull-soft);
  border-color: rgba(122, 92, 255, 0.34);
}

.pick-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pick-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--dust);
}

.pick-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 27px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--silver);
}

.pick--lead .pick-title {
  font-size: clamp(23px, 4vw, 34px);
}

.pick-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--body-ink);
}

.pick-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 240, 220, 0.36);
  padding-bottom: 2px;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.pick-link:hover,
.pick-link:focus-visible {
  color: var(--silver);
  border-bottom-color: var(--silver);
}

/* ---------- 转会时间线 ---------- */
.tl {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.tl-item {
  display: grid;
  gap: 8px;
  padding: 22px 0 22px 22px;
  border-left: 2px solid rgba(232, 238, 249, 0.12);
  position: relative;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 14px rgba(22, 240, 220, 0.55);
}

.tl-item:hover::before {
  transform: scale(1.08);
}

.tl-time {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--dust);
}

.tl-time .num {
  font-family: var(--font-mono);
  color: var(--pulse);
}

.tl-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.42;
  color: var(--silver);
}

.tl-text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-ink);
  max-width: 38em;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tl-archive {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(232, 238, 249, 0.04);
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-ink);
}

.tl-archive .num {
  font-family: var(--font-mono);
  color: var(--cyan);
}

.page-news .tl-archive a,
.page-news .band-foot a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 240, 220, 0.36);
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.page-news .tl-archive a:hover,
.page-news .band-foot a:hover {
  color: var(--silver);
  border-bottom-color: var(--silver);
}

/* ---------- 逐轮战报 ---------- */
.rounds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.round-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, rgba(232, 238, 249, 0.055) 0%, rgba(232, 238, 249, 0.02) 100%);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.round-item:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 240, 220, 0.36);
}

.round-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.round-round {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--dust);
}

.round-score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.round-figure {
  margin: 10px 0 8px;
  font-size: 14px;
  color: var(--body-ink);
}

.round-figure .num {
  font-family: var(--font-mono);
  color: var(--silver);
}

.round-note {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dust);
}

.round-link {
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 240, 220, 0.34);
}

.round-link:hover {
  color: var(--silver);
  border-bottom-color: var(--silver);
}

/* ---------- 辽宁观赛横带 ---------- */
.news-band {
  position: relative;
  padding: 34px 24px 36px;
  border: 1px solid rgba(22, 240, 220, 0.22);
  border-radius: var(--r-lg);
  background:
    linear-gradient(140deg, var(--turf) 0%, #09212F 52%, var(--hull) 100%);
  overflow: hidden;
}

.news-band::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 240, 220, 0.18) 0%, rgba(22, 240, 220, 0) 68%);
  pointer-events: none;
}

.band-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--silver);
}

.band-lead {
  margin: 0 0 24px;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-ink);
}

.band-lead .num {
  font-family: var(--font-mono);
  color: var(--cyan);
}

.news-figure--band {
  border-color: rgba(232, 238, 249, 0.18);
}

.band-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.band-item {
  display: grid;
  gap: 3px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: rgba(5, 10, 24, 0.42);
  border-left: 3px solid rgba(95, 227, 192, 0.7);
}

.band-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--silver);
}

.band-venue {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #5FE3C0;
}

.band-way {
  font-size: 13px;
  line-height: 1.6;
  color: var(--dust);
}

.band-foot {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-ink);
}

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

.series-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(232, 238, 249, 0.035);
  overflow: hidden;
  transition: border-color 220ms var(--ease);
}

.series-item[open] {
  border-color: rgba(22, 240, 220, 0.34);
  background: rgba(232, 238, 249, 0.055);
}

.series-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.series-summary::-webkit-details-marker {
  display: none;
}

.series-summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.series-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--silver);
}

.series-bar {
  grid-column: 1 / -1;
  order: 3;
  display: block;
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(232, 238, 249, 0.12);
  overflow: hidden;
}

.series-fill {
  display: block;
  height: 100%;
  width: var(--p, 0%);
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--cyan) 0%, var(--violet) 100%);
}

.series-count {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--cyan);
}

.series-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 20px 20px;
  display: grid;
  gap: 10px;
}

.series-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--body-ink);
}

.series-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

/* ---------- 订阅与线索投递 ---------- */
.sub {
  display: grid;
  gap: 16px;
}

.sub-card {
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--hull);
}

.sub-card--mail {
  background:
    linear-gradient(150deg, rgba(22, 240, 220, 0.12) 0%, rgba(5, 10, 24, 0) 62%),
    var(--hull-soft);
  border-color: rgba(22, 240, 220, 0.3);
}

.sub-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--silver);
}

.sub-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--body-ink);
}

.sub-mail {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  word-break: break-all;
}

.sub-mail a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 240, 220, 0.4);
}

.sub-mail a:hover {
  color: var(--silver);
  border-bottom-color: var(--silver);
}

.sub-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--dust);
}

.sub-card .pick-link {
  margin-top: 12px;
}

/* ---------- 桌面栅格与时间线轨道 ---------- */
@media (min-width: 760px) {
  .picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pick--lead {
    grid-column: 1 / -1;
  }
  .sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .band-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-news {
    --news-rail-pad: 84px;
  }

  .news-hero {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: end;
    gap: 56px;
    padding-bottom: 56px;
  }

  .news-stream::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 12px;
    bottom: 24px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--cyan) 0%, var(--violet) 58%, rgba(122, 92, 255, 0) 100%);
  }

  .news-section::before {
    content: "";
    position: absolute;
    left: -61px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--void);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 0 5px rgba(22, 240, 220, 0.1);
    z-index: 1;
  }

  .news-section--hot::before {
    width: 16px;
    height: 16px;
    left: -63px;
    top: 6px;
    background: var(--pulse);
    border-color: var(--pulse);
    box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.14);
  }

  .tl-item {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    padding-right: 8px;
  }

  .tl-item::before {
    top: 26px;
  }

  .tl-time {
    text-align: right;
    padding-top: 2px;
  }

  .news-band {
    margin-left: -84px;
    padding-left: calc(84px + 28px);
    padding-right: 40px;
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
  }

  .band-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .series-summary {
    grid-template-columns: minmax(0, 1fr) 200px auto;
  }

  .series-bar {
    grid-column: auto;
    order: 0;
  }
}

@media (min-width: 1200px) {
  .picks {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .pick--lead {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .pick,
  .page-news .round-item,
  .page-news .tl-item::before {
    transition: none;
  }
  .page-news .pick:hover,
  .page-news .round-item:hover {
    transform: none;
  }
  .page-news .tl-item:hover::before {
    transform: none;
  }
}

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