.page-news {
  --news-shift: clamp(28px, 5vw, 64px);
  background: var(--cream);
  color: var(--black);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-ink-strong);
  padding: clamp(36px, 5.5vw, 76px) 0 clamp(28px, 4vw, 52px);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  left: 34%;
  top: -38%;
  width: 90%;
  height: 190%;
  background: linear-gradient(155deg, rgba(31, 122, 76, .5), rgba(20, 48, 74, .92) 68%);
  transform: rotate(-7deg);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0 42%, var(--orange) 42% 50%, rgba(213, 219, 218, .16) 50% 100%);
  pointer-events: none;
}

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

.page-news .news-hero .breadcrumb {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-news .news-hero__grid {
  display: grid;
  gap: 30px;
}

.page-news .news-hero__kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--green-lit);
}

.page-news .news-hero h1 {
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--on-ink-strong);
}

.page-news .news-hero__lede {
  margin: 20px 0 0;
  max-width: 48ch;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--on-ink);
}

.page-news .news-hero__side {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.page-news .news-hero__stat {
  background: rgba(10, 26, 42, .74);
  padding: 16px 16px 18px;
}

.page-news .news-hero__stat b {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1;
  color: var(--orange);
}

.page-news .news-hero__stat span {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(250, 248, 243, .62);
}

/* ---------- 更新密度刻度 ---------- */
.page-news .news-scale {
  margin-top: clamp(32px, 4.5vw, 56px);
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.page-news .news-scale__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}

.page-news .news-scale__bars span {
  flex: 1 1 0;
  min-width: 3px;
  height: 30%;
  background: linear-gradient(180deg, rgba(53, 160, 106, .95), rgba(31, 122, 76, .28));
  border-radius: 1px;
}

.page-news .news-scale__bars span:nth-child(1) { height: 26%; }
.page-news .news-scale__bars span:nth-child(2) { height: 44%; }
.page-news .news-scale__bars span:nth-child(3) { height: 62%; }
.page-news .news-scale__bars span:nth-child(4) { height: 38%; }
.page-news .news-scale__bars span:nth-child(5) { height: 80%; }
.page-news .news-scale__bars span:nth-child(6) { height: 96%; }
.page-news .news-scale__bars span:nth-child(7) { height: 54%; }
.page-news .news-scale__bars span:nth-child(8) { height: 34%; }
.page-news .news-scale__bars span:nth-child(9) { height: 70%; }
.page-news .news-scale__bars span:nth-child(10) { height: 88%; }
.page-news .news-scale__bars span:nth-child(11) { height: 46%; }
.page-news .news-scale__bars span:nth-child(12) { height: 30%; }
.page-news .news-scale__bars span:nth-child(13) { height: 58%; }
.page-news .news-scale__bars span:nth-child(14) { height: 74%; }
.page-news .news-scale__bars span:nth-child(15) { height: 40%; }
.page-news .news-scale__bars span:nth-child(16) { height: 22%; }

.page-news .news-scale__label {
  margin: 12px 0 0;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(250, 248, 243, .55);
}

/* ---------- 首屏条带图 ---------- */
.page-news .news-hero__figure {
  margin: 0;
  background: var(--ink);
}

.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: clamp(200px, 30vw, 420px);
  object-fit: cover;
  filter: saturate(.55) contrast(1.06) brightness(.88);
}

/* ---------- 列表 ---------- */
.page-news .feed {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-news .feed__item {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0 -14px;
  padding: 24px 14px 26px;
  border-bottom: 1px solid var(--line);
  transition: background-color .3s var(--ease);
}

.page-news .feed__item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: opacity .3s var(--ease), transform .34s var(--ease);
}

.page-news .feed__item:hover {
  background: rgba(238, 241, 240, .72);
}

.page-news .feed__item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

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

.page-news .feed__tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cool);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--clay);
}

.page-news .feed__time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--rock);
}

.page-news .feed__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.44;
  color: var(--black);
  transition: color .28s var(--ease);
}

.page-news .feed__item:hover .feed__title {
  color: var(--green);
}

.page-news .feed__sum {
  margin: 10px 0 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--rock);
}

/* ---------- 满幅打断视觉 ---------- */
.page-news .news-break {
  margin: clamp(46px, 6vw, 84px) 0;
}

.page-news .news-break__frame {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.page-news .news-break__frame img {
  display: block;
  width: 100%;
  height: clamp(220px, 40vw, 440px);
  object-fit: cover;
  filter: saturate(.55) contrast(1.06) brightness(.9);
}

.page-news .news-break__frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
  height: 4px;
  background: var(--green);
}

.page-news .news-break__caption {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--rock);
}

/* ---------- 联赛比分追系列 ---------- */
.page-news .mode-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .mode-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px 30px;
  background: var(--cream);
}

.page-news .mode-card__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--clay);
}

.page-news .mode-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.45;
  color: var(--black);
}

.page-news .mode-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--rock);
}

.page-news .news-subline {
  display: grid;
  gap: 20px;
  margin-top: clamp(30px, 3.5vw, 48px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.page-news .news-subline p {
  margin: 0;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--rock);
}

/* ---------- 版本时间线 ---------- */
.page-news .timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}

.page-news .timeline__item {
  position: relative;
  padding: 0 0 32px 34px;
}

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

.page-news .timeline__item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 76, .14);
}

.page-news .timeline__ver {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 2px;
  background: var(--ink);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--orange);
}

.page-news .timeline__body h3 {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.page-news .timeline__body p {
  margin: 10px 0 0;
  max-width: 64ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--rock);
}

.page-news .news-aside {
  margin: clamp(28px, 3.5vw, 44px) 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--green);
  font-size: 15px;
  line-height: 1.8;
  color: var(--rock);
}

.page-news .news-aside a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 122, 76, .35);
}

.page-news .news-aside a:hover {
  color: var(--green-lit);
  border-bottom-color: var(--green-lit);
}

/* ---------- 数据观察 ---------- */
.page-news .notes {
  color: var(--on-ink);
}

.page-news .notes .plate {
  margin: 0 0 14px;
}

.page-news .notes h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.28;
  color: var(--on-ink-strong);
}

.page-news .notes__head > p:not(.plate) {
  margin: 16px 0 0;
  max-width: 58ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--on-ink);
}

.page-news .notes__grid {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
}

.page-news .note {
  padding: 26px 0 4px;
  border-top: 1px solid var(--line-dark);
}

.page-news .notes__main .note:first-of-type {
  margin-top: clamp(26px, 3vw, 40px);
}

.page-news .note__k {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--green-lit);
}

.page-news .note h3 {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  color: var(--on-ink-strong);
}

.page-news .note p:not(.note__k) {
  margin: 10px 0 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--on-ink);
}

.page-news .notes__aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-news .notes__aside .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.5) contrast(1.08) brightness(.86);
}

.page-news .notes__tip {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 248, 243, .66);
}

.page-news .notes__tip a {
  color: var(--green-lit);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 160, 106, .4);
}

.page-news .notes__tip a:hover {
  color: var(--on-ink-strong);
}

/* ---------- 订阅与回看 ---------- */
.page-news .start-panel {
  display: grid;
  gap: 28px;
  padding: clamp(26px, 3.6vw, 46px);
  border: 1px solid var(--line);
  background: var(--cool);
  box-shadow: var(--shadow-1);
}

.page-news .start-panel__text h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.page-news .start-panel__text h3 + p {
  margin-top: 10px;
}

.page-news .start-panel__text p {
  margin: 0 0 24px;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--rock);
}

.page-news .start-panel__text p:last-child {
  margin-bottom: 0;
}

.page-news .start-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.page-news .start-panel__actions .btn {
  white-space: nowrap;
}

/* ---------- 页尾条带 ---------- */
.page-news .news-footer-band {
  position: relative;
  margin: clamp(48px, 6vw, 84px) 0 0;
  background: var(--ink);
}

.page-news .news-footer-band img {
  display: block;
  width: 100%;
  height: clamp(190px, 28vw, 380px);
  object-fit: cover;
  filter: saturate(.5) contrast(1.06) brightness(.82);
}

.page-news .news-footer-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 26, 42, 0) 40%, rgba(10, 26, 42, .82));
  pointer-events: none;
}

.page-news .news-footer-band__caption {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 1;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 23px);
  color: var(--on-ink-strong);
}

/* ---------- 平板与桌面 ---------- */
@media (min-width: 700px) {
  .page-news .feed__item {
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 28px;
    margin: 0 -20px;
    padding: 28px 20px 30px;
  }

  .page-news .feed__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 3px;
  }

  .page-news .feed__item::before {
    left: 20px;
    top: 0;
  }

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

  .page-news .news-subline {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
  }

  .page-news .start-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: end;
  }

  .page-news .news-hero__side {
    grid-template-columns: 1fr;
  }

  .page-news .news-hero__stat {
    padding: 18px 20px 20px;
  }

  .page-news .notes__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-news .notes__aside {
    position: sticky;
    top: 112px;
  }
}

@media (min-width: 1080px) {
  .page-news .feed__item {
    grid-template-columns: 178px minmax(0, 1fr);
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .page-news .feed__item:hover {
    background: transparent;
  }
}
