.page-news {
  --news-neon-line: rgba(57, 255, 20, .22);
  --news-rule: rgba(239, 233, 223, .1);
  --news-chip: rgba(154, 165, 177, .18);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 64px) 0 clamp(34px, 5.5vw, 72px);
  border-bottom: 1px solid var(--line-soft);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: -30% -25% -10% -25%;
  background:
    linear-gradient(112deg, rgba(30, 144, 255, .17) 0 33%, transparent 33.3%),
    linear-gradient(292deg, rgba(255, 107, 53, .13) 0 19%, transparent 19.3%),
    linear-gradient(0deg, rgba(57, 255, 20, .06) 0 5%, transparent 5.3%);
  transform: rotate(-2deg);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2.2vw, 24px);
}

.page-news .news-hero__title {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 400;
  color: var(--cream);
}

.page-news .news-hero__lede {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.75;
}

.page-news .news-hero__stats {
  list-style: none;
  margin: clamp(8px, 1.6vw, 18px) 0 0;
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.page-news .news-hero__stat {
  background: var(--panel);
  padding: 14px 14px 16px;
  display: grid;
  gap: 5px;
  min-width: 0;
}

.page-news .news-hero__stat b {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.9vw, 30px);
  font-weight: 500;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  line-height: 1.1;
}

.page-news .news-hero__stat b.is-neon { color: var(--neon); }
.page-news .news-hero__stat b.is-orange { color: var(--orange); }
.page-news .news-hero__stat b.is-blue { color: var(--blue); }

.page-news .news-hero__stat span {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .03em;
  color: var(--rock);
}

/* ---------- 通用章节节奏 ---------- */
.page-news .section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.page-news .section--tight {
  padding: clamp(34px, 5vw, 64px) 0;
}

.page-news .news-head {
  display: grid;
  gap: 10px;
  max-width: 74ch;
}

.page-news .news-head__lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.page-news .news-head .h-section,
.page-news .news-review__body .h-section,
.page-news .news-transfer__body .h-section,
.page-news .news-next__title {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: -.015em;
  font-weight: 400;
  color: var(--cream);
}

.page-news .news-review__body .prose,
.page-news .news-transfer__body .prose {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 58ch;
}

/* ---------- 图片占位 ---------- */
.page-news .media-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--panel-deep);
  border: 1px solid var(--line-soft);
}

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

.page-news .media-frame__caption {
  display: block;
  padding: 9px 14px 10px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--rock);
  border-top: 1px solid var(--line-soft);
  background: var(--panel);
}

.page-news .news-system__figure,
.page-news .news-timeline__figure {
  margin-top: clamp(22px, 3.4vw, 38px);
}

/* ---------- 报告体系 ---------- */
.page-news .news-system__grid {
  margin-top: clamp(18px, 2.8vw, 30px);
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
}

.page-news .news-report {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--blue);
  border-radius: var(--r-sm);
  transition: background-color .25s var(--ease), border-left-color .25s var(--ease);
}

.page-news .news-report:hover {
  background: var(--panel-deep);
}

.page-news .news-report--wide {
  border-left-color: var(--neon);
}

.page-news .news-system__grid > :last-child {
  border-left-color: var(--orange);
}

.page-news .news-report__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--rock);
}

.page-news .news-report__title {
  margin: 0;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.page-news .news-report--wide .news-report__title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
}

.page-news .news-report__rate {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  color: var(--rock);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.page-news .news-report .card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ---------- 阶段复盘 ---------- */
.page-news .news-review {
  background: linear-gradient(180deg, transparent, rgba(30, 144, 255, .05) 40%, transparent);
}

.page-news .news-review__grid {
  display: grid;
  gap: clamp(24px, 4vw, 46px);
}

.page-news .news-review__body {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

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

.page-news .news-steps {
  list-style: none;
  margin: clamp(12px, 2vw, 20px) 0 0;
  padding: 1px;
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  counter-reset: nstep;
}

.page-news .news-steps__item {
  counter-increment: nstep;
  background: var(--panel-deep);
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px 12px;
  min-width: 0;
  transition: background-color .25s var(--ease);
}

.page-news .news-steps__item:hover {
  background: var(--panel);
}

.page-news .news-steps__item::before {
  content: counter(nstep, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--orange);
  padding-top: 3px;
}

.page-news .news-steps__item h3 {
  grid-column: 2;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.45;
}

.page-news .news-steps__item p {
  grid-column: 2;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--rock);
}

/* ---------- 转会专题 ---------- */
.page-news .news-transfer {
  position: relative;
}

.page-news .news-transfer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clay), rgba(180, 100, 63, .05) 70%);
}

.page-news .news-transfer__grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.page-news .news-transfer__body {
  display: grid;
  gap: 12px;
  align-content: center;
  min-width: 0;
}

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

.page-news .news-clues {
  list-style: none;
  margin: clamp(10px, 1.6vw, 16px) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--news-rule);
}

.page-news .news-clues__item {
  position: relative;
  background: var(--bg);
  padding: 13px 14px 13px 30px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--rock);
}

.page-news .news-clues__item strong {
  color: var(--cream);
  font-weight: 500;
}

.page-news .news-clues__dot {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  transition: transform .25s var(--ease);
}

.page-news .news-clues__item:hover .news-clues__dot {
  transform: scale(1.7);
}

/* ---------- 公告时间线 ---------- */
.page-news .news-timeline__list {
  list-style: none;
  margin: clamp(24px, 3.6vw, 40px) 0 0;
  padding: 0;
  position: relative;
}

.page-news .news-timeline__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 107, 53, .18) 100%);
}

.page-news .news-timeline__item {
  position: relative;
  padding: 0 0 clamp(22px, 3vw, 32px) 32px;
  min-width: 0;
}

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

.page-news .news-timeline__node {
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--bg);
  display: block;
  transition: background-color .22s var(--ease), box-shadow .22s var(--ease);
}

.page-news .news-timeline__node:hover,
.page-news .news-timeline__node:focus-visible {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 53, .18);
  outline: none;
}

.page-news .news-timeline__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.page-news .news-timeline__head h3 {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
}

.page-news .news-timeline__count {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--neon);
}

.page-news .news-timeline__desc {
  margin: 7px 0 0;
  max-width: 66ch;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--rock);
}

/* ---------- 最近更新列表 ---------- */
.page-news .news-feed__grid {
  margin-top: clamp(20px, 3vw, 34px);
  display: grid;
  gap: clamp(18px, 2.6vw, 32px);
}

.page-news .news-feed__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.page-news .news-filter {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--news-chip);
  color: var(--cream);
  border: 1px solid transparent;
  white-space: nowrap;
}

.page-news .news-filter.is-active {
  color: var(--neon);
  border-color: rgba(57, 255, 20, .5);
  background: rgba(57, 255, 20, .07);
}

.page-news .news-feed__list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.page-news .news-item {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 17px 16px 18px 26px;
  border-top: 1px solid var(--news-neon-line);
  min-width: 0;
  transition: background-color .25s var(--ease);
}

.page-news .news-item:last-child {
  border-bottom: 1px solid var(--news-neon-line);
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 4px;
  height: 18px;
  border-radius: 1px;
  background: var(--blue);
  transition: width .28s var(--ease), background-color .28s var(--ease);
}

.page-news .news-item--hot::before {
  background: var(--orange);
}

.page-news .news-item:hover {
  background: rgba(239, 233, 223, .035);
}

.page-news .news-item:hover::before,
.page-news .news-item:focus-within::before {
  width: 12px;
}

.page-news .news-item__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .news-item__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--news-chip);
  color: var(--cream);
}

.page-news .news-item__time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--rock);
}

.page-news .news-item__title {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
}

.page-news .news-item__sum {
  margin: 0;
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--rock);
}

/* ---------- 尾段引导 ---------- */
.page-news .news-next__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3.6vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background:
    linear-gradient(115deg, rgba(30, 144, 255, .12) 0 42%, transparent 42.2%),
    linear-gradient(292deg, rgba(57, 255, 20, .07) 0 24%, transparent 24.2%),
    var(--panel);
}

.page-news .news-next__text {
  margin: 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-news .news-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-news .news-system__grid {
    grid-template-columns: 1.35fr 1fr;
  }

  .page-news .news-system__grid > :first-child {
    grid-row: span 2;
  }
}

@media (min-width: 960px) {
  .page-news .news-review__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
    align-items: start;
  }

  .page-news .news-transfer__grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
  }
}

@media (min-width: 1020px) {
  .page-news .news-feed__grid {
    grid-template-columns: 168px minmax(0, 1fr);
    align-items: start;
  }

  .page-news .news-feed__filters {
    flex-direction: column;
    flex-wrap: nowrap;
    position: sticky;
    top: 96px;
  }

  .page-news .news-filter {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item::before,
  .page-news .news-timeline__node,
  .page-news .news-clues__dot,
  .page-news .news-steps__item {
    transition: none;
  }
}
