.page-news {
  --news-gap: 22px;
  --news-block-gap: clamp(48px, 7vw, 88px);
}

/* ── 顶部导语 ─────────────────────────────── */
.page-news .news-top {
  padding-top: 22px;
}

.page-news .news-lead {
  max-width: 46em;
  padding: 6px 0 clamp(28px, 5vw, 52px);
}

.page-news .news-lead h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 5.6vw, 54px);
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 12px 0 18px;
}

.page-news .news-lead__text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--grey);
  max-width: 38em;
}

.page-news .news-lead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--grey);
  list-style: none;
}

.page-news .news-lead__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-news .news-lead__meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--green);
  transform: rotate(45deg);
  flex: none;
}

.page-news .news-mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums slashed-zero;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.page-news .news-lead__meta .news-mono {
  font-size: 15px;
}

/* ── 骨架：栏目标签 + 条目流 ───────────────── */
.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.page-news .news-rail {
  position: sticky;
  top: 8px;
  z-index: 3;
  background: var(--paper);
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--line);
}

.page-news .news-rail__title {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--wash-2);
  margin-bottom: 8px;
}

.page-news .news-rail__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  list-style: none;
  scrollbar-width: none;
}

.page-news .news-rail__list::-webkit-scrollbar {
  display: none;
}

.page-news .news-pill {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dai);
  background: var(--card);
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-news .news-pill:hover,
.page-news .news-pill:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ── 区块通用 ───────────────────────────── */
.page-news .news-flow {
  display: flex;
  flex-direction: column;
  gap: var(--news-block-gap);
  min-width: 0;
}

.page-news .news-block {
  scroll-margin-top: 96px;
  min-width: 0;
}

.page-news .news-block__head {
  margin-bottom: 22px;
}

.page-news .news-block__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}

.page-news .news-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 5px;
  height: 1.05em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--green) 0%, var(--orange) 100%);
}

.page-news .news-block__sub {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  padding-left: 16px;
}

/* ── 本季重点 ───────────────────────────── */
.page-news .top-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
  counter-reset: top;
}

.page-news .top-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-news .top-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.page-news .top-item:hover::after {
  transform: scaleY(1);
}

.page-news .top-item__no {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
}

.page-news .top-item__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}

.page-news .top-item__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--grey);
}

.page-news .top-item__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--dai);
  text-decoration: none;
  border-bottom: 1px solid var(--wash-4);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-news .top-item__link:hover,
.page-news .top-item__link:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

/* ── 赛日战报：宽窄交替 ─────────────────── */
.page-news .stream {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.page-news .report {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.page-news .report:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.page-news .report__kicker {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--wash-2);
}

.page-news .report__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 6px;
}

.page-news .report__text {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--grey);
}

.page-news .report__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--wash-4);
}

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

.page-news .report__stat dt {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--wash-2);
}

.page-news .report__stat dd {
  font-size: 17px;
  color: var(--ink);
  margin-top: 2px;
  word-break: break-word;
}

.page-news .report--wide .report__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.page-news .report__media .media__frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

/* ── 版本与目录更新 ─────────────────────── */
.page-news .version-track {
  list-style: none;
  position: relative;
  padding-left: 22px;
  display: grid;
  gap: 20px;
}

.page-news .version-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--wash-4) 90%);
  border-radius: 2px;
}

.page-news .version-item {
  position: relative;
}

.page-news .version-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--paper);
  border: 2px solid var(--dai);
  transform: rotate(45deg);
}

.page-news .version-item__no {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dai);
  background: rgba(198, 255, 61, 0.34);
  padding: 3px 9px;
  border-radius: 6px;
}

.page-news .version-item__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 6px;
  line-height: 1.45;
}

.page-news .version-item__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--grey);
}

.page-news .version-item__when {
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--wash-2);
}

.page-news .version-media {
  margin: 26px 0 0;
}

.page-news .version-media .media__frame {
  border-radius: var(--radius);
  overflow: hidden;
}

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

/* ── 主客场专题 ─────────────────────────── */
.page-news .news-block--full {
  background: linear-gradient(180deg, rgba(76, 110, 120, 0.08) 0%, rgba(246, 243, 236, 0) 62%);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
}

.page-news .ha-hero {
  margin: 0 0 22px;
}

.page-news .ha-hero .media__frame {
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .ha-hero .media__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .ha-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.page-news .ha-side {
  border-radius: var(--radius-sm);
  padding: 18px 18px 20px;
  color: var(--ink);
}

.page-news .ha-side--home {
  background: var(--orange);
}

.page-news .ha-side--away {
  background: var(--dai);
  color: var(--paper);
}

.page-news .ha-side__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.page-news .ha-side__value {
  display: block;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05;
  margin: 8px 0 6px;
  font-weight: 700;
}

.page-news .ha-side--away .ha-side__value {
  color: var(--green);
}

.page-news .ha-side--home .ha-side__value {
  color: var(--ink);
}

.page-news .ha-side__desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.page-news .ha-note {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.page-news .ha-note__title {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--dai);
  margin-bottom: 8px;
}

.page-news .ha-note__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--grey);
}

.page-news .ha-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ── 栏目导航与订阅 ─────────────────────── */
.page-news .sub-tags {
  margin-bottom: 20px;
}

.page-news .sub-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .sub-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--wash-3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.page-news .sub-item:hover {
  border-left-color: var(--green);
  transform: translateX(3px);
}

.page-news .sub-item__title {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.page-news .sub-item__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--grey);
}

.page-news .sub-how {
  margin-top: 26px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.page-news .sub-how__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.page-news .sub-how__text {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(246, 243, 236, 0.86);
}

.page-news .sub-how__cta {
  margin-top: 16px;
}

.page-news .sub-media {
  margin: 26px 0 0;
}

.page-news .sub-media .media__frame {
  border-radius: var(--radius);
  overflow: hidden;
}

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

/* ── 也想写一篇 ─────────────────────────── */
.page-news .news-block--callout {
  border-radius: var(--radius);
  border: 1px solid var(--wash-4);
  background: var(--card);
  padding: clamp(22px, 4vw, 36px);
  position: relative;
  overflow: hidden;
}

.page-news .news-block--callout::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 255, 61, 0.42) 0%, rgba(198, 255, 61, 0) 70%);
  pointer-events: none;
}

.page-news .callout-inner {
  position: relative;
  max-width: 44em;
}

.page-news .callout__text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--grey);
}

.page-news .callout__list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.page-news .callout__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--ink);
}

.page-news .callout__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.page-news .callout__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ── 媒体通用 ───────────────────────────── */
.page-news .media__caption {
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--wash-2);
}

/* ── 平板 ───────────────────────────────── */
@media (min-width: 640px) {
  .page-news .news-lead__meta {
    gap: 12px 28px;
  }

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

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

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

  .page-news .top-item:first-child {
    grid-column: span 2;
  }

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

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

  .page-news .report--wide .report__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── 桌面：固定标签列 + 宽窄交替条目 ────── */
@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: 176px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
  }

  .page-news .news-rail {
    position: sticky;
    top: 96px;
    background: transparent;
    border-bottom: 0;
    border-left: 2px solid var(--wash-4);
    padding: 4px 0 4px 16px;
  }

  .page-news .news-rail__list {
    flex-direction: column;
    overflow: visible;
    gap: 6px;
  }

  .page-news .news-pill {
    display: block;
    padding: 8px 12px;
    font-size: 13.5px;
  }

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

  .page-news .stream > .report:nth-child(4n + 1) {
    grid-column: span 2;
  }

  .page-news .stream > .report:nth-child(4n + 4) {
    grid-column: span 2;
  }

  .page-news .report--wide {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-areas:
      "body media"
      "body media";
    align-items: start;
    gap: 22px;
  }

  .page-news .report--wide .report__body {
    grid-area: body;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .page-news .report--wide .report__media {
    grid-area: media;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .report--wide .media__img {
    max-height: 260px;
  }

  .page-news .version-track {
    padding-left: 26px;
  }

  .page-news .version-item::before {
    left: -26px;
  }
}

/* ── 大屏 ───────────────────────────────── */
@media (min-width: 1280px) {
  .page-news .news-layout {
    grid-template-columns: 196px minmax(0, 1fr);
  }

  .page-news .ha-side {
    padding: 22px 22px 24px;
  }
}

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

  .page-news .report:hover,
  .page-news .sub-item:hover,
  .page-news .news-pill:hover {
    transform: none;
  }
}
<<<END>>>
