/* ===================== 赛季资讯 · 页面专属样式 ===================== */
.page-news {
  --news-ink: #3B4763;
  --news-ink-soft: #6B7A93;
  background: var(--mist);
  color: var(--news-ink);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 5vw, 58px) 0 clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(110% 130% at 96% -12%, rgba(196, 71, 43, .13), rgba(196, 71, 43, 0) 58%),
    var(--mist);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -150px;
  right: -130px;
  width: 340px;
  height: 340px;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  background: linear-gradient(150deg, rgba(47, 191, 147, .22), rgba(240, 180, 41, .16));
}

.page-news .news-hero__wrap {
  display: grid;
  gap: clamp(22px, 3.5vw, 44px);
}

@media (min-width: 900px) {
  .page-news .news-hero__wrap {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .95fr);
    align-items: end;
  }
}

.page-news .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--slate);
}

.page-news .crumbs a {
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 47, 25, .35);
}

.page-news .crumbs a:hover {
  border-bottom-color: var(--clay-deep);
}

.page-news .news-hero .eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--clay-deep);
}

.page-news .news-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--night);
}

.page-news .news-hero .lede {
  max-width: 42em;
  margin: 0;
  color: var(--news-ink);
}

.page-news .news-hero__board {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--night);
  color: var(--mist);
  box-shadow: var(--shadow-soft);
}

.page-news .news-hero__board::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(240, 180, 41, .34), rgba(240, 180, 41, 0) 70%);
}

.page-news .board-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--amber);
}

.page-news .board-list {
  position: relative;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .board-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 243, 236, .14);
}

.page-news .board-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-news .board-num {
  min-width: 48px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
}

.page-news .board-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 243, 236, .84);
}

/* ---------- 本轮焦点横带 ---------- */
.page-news .focus-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 6.5vw, 74px) 0 clamp(38px, 6vw, 68px);
  background: var(--night);
  color: var(--mist);
}

.page-news .focus-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10%;
  top: -22%;
  width: 48%;
  height: 96%;
  border-radius: 52% 48% 44% 56% / 56% 46% 54% 44%;
  background: radial-gradient(58% 58% at 50% 50%, rgba(196, 71, 43, .55), rgba(196, 71, 43, 0) 72%);
}

.page-news .focus-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -30%;
  width: 44%;
  height: 84%;
  border-radius: 58% 42% 38% 62% / 46% 58% 42% 54%;
  background: radial-gradient(58% 58% at 50% 50%, rgba(15, 138, 106, .5), rgba(15, 138, 106, 0) 72%);
}

.page-news .focus-band__head {
  max-width: 640px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.page-news .eyebrow--night {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--amber);
}

.page-news .focus-band__head h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--mist);
}

.page-news .focus-band__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 243, 236, .74);
}

.page-news .focus-lead {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

@media (min-width: 860px) {
  .page-news .focus-lead {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  }
}

.page-news .focus-lead__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(247, 243, 236, .18);
  background: var(--night-2);
}

.page-news .focus-lead__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .focus-lead__body h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--mist);
}

.page-news .focus-lead__body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 243, 236, .82);
}

.page-news .focus-pair {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 4vw, 38px);
}

@media (min-width: 720px) {
  .page-news .focus-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .focus-card {
  padding: 20px 22px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--night-2);
}

.page-news .focus-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.42;
  color: var(--mist);
}

.page-news .focus-card p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(247, 243, 236, .78);
}

.page-news .focus-band .entry__meta {
  color: rgba(247, 243, 236, .58);
}

/* ---------- 标签 ---------- */
.page-news .tag {
  display: inline-block;
  padding: 3px 11px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(196, 71, 43, .12);
  color: var(--clay-deep);
}

.page-news .tag--method {
  background: rgba(15, 138, 106, .14);
  color: #0B6B52;
}

.page-news .tag--observe {
  background: rgba(196, 71, 43, .13);
  color: var(--clay-deep);
}

.page-news .tag--update {
  background: rgba(240, 180, 41, .24);
  color: #7A5600;
}

.page-news .tag--term {
  background: rgba(22, 32, 63, .1);
  color: var(--night);
}

.page-news .focus-band .tag--amber {
  background: var(--amber);
  color: var(--night);
}

/* ---------- 目录主体 ---------- */
.page-news .news-body {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  padding-top: clamp(34px, 5.5vw, 62px);
  padding-bottom: clamp(40px, 6vw, 76px);
}

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

.page-news .side-title {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--slate);
}

@media (min-width: 1024px) {
  .page-news .news-side {
    position: sticky;
    top: 32px;
  }
}

.page-news .side-list {
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

@media (min-width: 1024px) {
  .page-news .side-list {
    flex-direction: column;
    gap: 4px;
    overflow: visible;
  }
}

.page-news .side-link {
  display: block;
  padding: 9px 14px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--night);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border-bottom: 3px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease);
}

@media (min-width: 1024px) {
  .page-news .side-link {
    border-bottom: 0;
    border-left: 4px solid transparent;
  }
}

.page-news .side-link:hover,
.page-news .side-link:focus-visible {
  background: rgba(22, 32, 63, .06);
  color: var(--clay-deep);
}

.page-news .side-link--focus { border-bottom-color: var(--amber); }
.page-news .side-link--method { border-bottom-color: var(--jade); }
.page-news .side-link--observe { border-bottom-color: var(--clay); }
.page-news .side-link--update { border-bottom-color: var(--amber); }
.page-news .side-link--term { border-bottom-color: var(--night); }
.page-news .side-link--rhythm { border-bottom-color: var(--slate); }

@media (min-width: 1024px) {
  .page-news .side-link--focus { border-bottom-color: transparent; border-left-color: var(--amber); }
  .page-news .side-link--method { border-bottom-color: transparent; border-left-color: var(--jade); }
  .page-news .side-link--observe { border-bottom-color: transparent; border-left-color: var(--clay); }
  .page-news .side-link--update { border-bottom-color: transparent; border-left-color: var(--amber); }
  .page-news .side-link--term { border-bottom-color: transparent; border-left-color: var(--night); }
  .page-news .side-link--rhythm { border-bottom-color: transparent; border-left-color: var(--slate); }
}

/* ---------- 章节 ---------- */
.page-news .news-section {
  margin-bottom: clamp(38px, 5.5vw, 64px);
}

.page-news .news-section:last-child {
  margin-bottom: 0;
}

.page-news .news-section__head {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--line);
}

.page-news .news-section__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 72px;
  height: 2px;
  background: var(--clay);
}

.page-news .news-section--method .news-section__head::after { background: var(--jade); }
.page-news .news-section--observe .news-section__head::after { background: var(--clay); }
.page-news .news-section--update .news-section__head::after { background: var(--amber); }
.page-news .news-section--term .news-section__head::after { background: var(--night); }

.page-news .news-section__head .eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--slate);
}

.page-news .news-section__head h2 {
  margin: 6px 0 6px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--night);
}

.page-news .section-note {
  max-width: 46em;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--news-ink-soft);
}

/* ---------- 数据方法引言 ---------- */
.page-news .method-intro {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

@media (min-width: 760px) {
  .page-news .method-intro {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: center;
  }
}

.page-news .method-intro__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.page-news .method-intro__media img {
  display: block;
  width: 100%;
  height: clamp(140px, 22vw, 180px);
  object-fit: cover;
}

.page-news .method-intro__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--news-ink);
}

/* ---------- 条目列表 ---------- */
.page-news .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-news .entry {
  padding: 18px 22px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.page-news .entry:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.page-news .news-section--method .entry { border-left-color: var(--jade); }
.page-news .news-section--observe .entry { border-left-color: var(--clay); }
.page-news .news-section--update .entry { border-left-color: var(--amber); }
.page-news .news-section--term .entry { border-left-color: var(--night); }

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

.page-news .entry__round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
}

.page-news .entry__title {
  margin: 10px 0 8px;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--night);
}

.page-news .entry__lede {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--news-ink);
}

.page-news .entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--news-ink-soft);
}

.page-news .entry__meta .num {
  font-weight: 600;
  color: var(--jade);
}

/* ---------- 赛季观察横图 ---------- */
.page-news .observe-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(150px, 26vw, 240px);
  margin: 0 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--night-2);
}

.page-news .observe-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .observe-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 32, 63, .1) 0%, rgba(22, 32, 63, .82) 100%);
}

.page-news .observe-banner__text {
  position: relative;
  padding: 16px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mist);
}

.page-news .observe-banner__text .num {
  color: var(--amber);
  font-weight: 700;
}

/* ---------- 平台动态配图 ---------- */
.page-news .update-figure {
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.page-news .update-figure img {
  display: block;
  width: 100%;
  height: clamp(180px, 26vw, 300px);
  object-fit: cover;
}

.page-news .update-figure__cap {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--news-ink-soft);
}

/* ---------- 术语解读 ---------- */
.page-news .term-feature {
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--night);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-news .term-feature h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  color: var(--night);
}

.page-news .term-feature > p {
  max-width: 60em;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--news-ink);
}

.page-news .term-table {
  width: 100%;
  min-width: 520px;
}

.page-news .term-table__caption {
  padding-bottom: 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-align: left;
  color: var(--slate);
}

.page-news .term-table th {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate);
}

.page-news .term-table td {
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
  color: var(--news-ink);
}

.page-news .term-table td:first-child {
  font-weight: 600;
  color: var(--night);
}

.page-news .term-table .num {
  color: var(--jade);
  font-weight: 700;
}

.page-news .term-feature .annot {
  display: block;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ---------- 底部更新节奏 ---------- */
.page-news .news-foot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--night);
  color: var(--mist);
}

.page-news .news-foot::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -12%;
  bottom: -40%;
  width: 46%;
  height: 110%;
  border-radius: 54% 46% 40% 60% / 58% 44% 56% 42%;
  background: radial-gradient(58% 58% at 50% 50%, rgba(196, 71, 43, .5), rgba(196, 71, 43, 0) 72%);
}

.page-news .news-foot::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10%;
  top: -30%;
  width: 38%;
  height: 90%;
  border-radius: 46% 54% 60% 40% / 44% 56% 44% 56%;
  background: radial-gradient(58% 58% at 50% 50%, rgba(15, 138, 106, .44), rgba(15, 138, 106, 0) 72%);
}

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

@media (min-width: 880px) {
  .page-news .news-foot__grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.28fr);
    align-items: start;
  }
}

.page-news .news-foot__intro h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--mist);
}

.page-news .news-foot__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 243, 236, .78);
}

.page-news .rhythm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 620px) {
  .page-news .rhythm-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .rhythm-list li {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--night-2);
}

.page-news .rhythm-list li:nth-child(even) {
  border-left-color: var(--jade-bright);
}

.page-news .rhythm-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--amber);
}

.page-news .rhythm-list li:nth-child(even) .rhythm-name {
  color: var(--jade-bright);
}

.page-news .rhythm-note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(247, 243, 236, .8);
}

.page-news .news-foot__links {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(247, 243, 236, .16);
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(247, 243, 236, .78);
}

.page-news .news-foot a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 180, 41, .45);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}

.page-news .news-foot a:hover,
.page-news .news-foot a:focus-visible {
  color: var(--mist);
  border-bottom-color: var(--mist);
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news .entry,
  .page-news .side-link,
  .page-news .news-foot a {
    transition-duration: .01ms !important;
  }

  .page-news .entry:hover {
    transform: none;
  }
}
