.page-news {
  --news-line: rgba(31, 224, 208, .16);
  --news-line-soft: rgba(140, 166, 191, .22);
  --news-card-bg: rgba(10, 33, 54, .68);
  color: var(--ice);
  background: var(--deep);
  overflow-x: clip;
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-news .crumb {
  color: var(--mist);
  text-decoration: none;
  transition: color .22s var(--ease);
}

.page-news .crumb:hover,
.page-news .crumb:focus-visible {
  color: var(--cyan);
}

.page-news .crumb[aria-current="page"] {
  color: var(--cyan);
}

.page-news .crumb-sep {
  color: rgba(140, 166, 191, .45);
}

/* ---------- 区块节奏 ---------- */
.page-news .news-band {
  padding-block: clamp(44px, 6vw, 82px);
}

.page-news .news-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.page-news .news-head .eyebrow {
  margin: 0 0 12px;
}

.page-news .news-head .section-title {
  margin: 0 0 14px;
}

.page-news .news-head .note {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--mist);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 38px);
  padding-bottom: clamp(40px, 5.5vw, 74px);
  background-color: var(--deep);
  background-image:
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(31, 224, 208, .045) 42px 43px),
    radial-gradient(110% 78% at 6% -4%, rgba(31, 224, 208, .15), transparent 58%),
    radial-gradient(88% 68% at 96% 6%, rgba(168, 85, 247, .13), transparent 60%);
}

.page-news .news-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-news .news-hero-copy .eyebrow {
  margin: 0 0 14px;
}

.page-news .news-hero-copy .display-title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 20px;
  color: var(--ice);
}

.page-news .news-hero-copy .display-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(31, 224, 208, 0));
  transform: skewX(-24deg);
}

.page-news .news-hero-copy .lede {
  max-width: 62ch;
  margin: 0 0 30px;
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  line-height: 1.78;
  color: var(--mist);
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .news-hero-figure {
  position: relative;
  margin: 0;
}

.page-news .news-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-line);
  box-shadow: var(--shadow-lift);
}

/* ---------- 最新动态条 ---------- */
.page-news .news-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-ticker li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--news-line);
  background: rgba(18, 58, 90, .45);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mist);
}

.page-news .news-ticker li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.page-news .news-ticker strong {
  font-family: var(--font-num);
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: var(--cyan);
  font-weight: 700;
}

/* ---------- 分类标签 ---------- */
.page-news .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--news-line-soft);
  background: rgba(10, 33, 54, .6);
  color: var(--ice);
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color .26s var(--ease), color .26s var(--ease), background .26s var(--ease);
}

.page-news .news-tag:hover,
.page-news .news-tag:focus-visible {
  border-color: var(--cyan);
  background: rgba(31, 224, 208, .12);
  color: var(--cyan);
}

/* ---------- 本期看点 ---------- */
.page-news .news-highlight-grid {
  display: grid;
  gap: 20px;
}

.page-news .news-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-line);
  background: linear-gradient(155deg, rgba(18, 58, 90, .88), rgba(4, 16, 31, .96));
}

.page-news .news-kicker {
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(31, 224, 208, .34);
  background: rgba(31, 224, 208, .14);
  color: var(--cyan);
  font-size: 12.5px;
  letter-spacing: .1em;
}

.page-news .news-highlight h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.44;
  color: var(--ice);
}

.page-news .news-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.74;
  color: var(--mist);
}

.page-news .news-more {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(31, 224, 208, .4);
  color: var(--cyan);
  font-size: 14px;
  text-decoration: none;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}

.page-news .news-more:hover,
.page-news .news-more:focus-visible {
  color: var(--cyan-soft);
  border-color: var(--cyan-soft);
}

/* ---------- 版本迭代记录 ---------- */
.page-news .news-versions-grid {
  display: grid;
  gap: 34px;
}

.page-news .news-versions-rail .eyebrow {
  margin: 0 0 12px;
}

.page-news .news-versions-rail .section-title {
  margin: 0 0 14px;
}

.page-news .news-versions-rail .note {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--mist);
}

.page-news .news-version-index {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-version-index li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line);
  background: rgba(10, 33, 54, .72);
}

.page-news .news-ver {
  flex: none;
  font-family: var(--font-num);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
}

.page-news .news-ver-note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mist);
}

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

.page-news .news-item {
  position: relative;
  padding: 24px 24px 24px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line);
  background: linear-gradient(150deg, rgba(18, 58, 90, .7), rgba(10, 33, 54, .84));
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--item-accent, var(--cyan));
}

.page-news .news-item:hover {
  border-color: rgba(31, 224, 208, .42);
  transform: translateY(-2px);
}

.page-news .news-item--cyan { --item-accent: var(--cyan); }
.page-news .news-item--coral { --item-accent: var(--coral); }
.page-news .news-item--violet { --item-accent: var(--violet); }
.page-news .news-item--amber { --item-accent: var(--amber); }

.page-news .news-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-news .news-item-time {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-news .news-item h3,
.page-news .news-season h3,
.page-news .news-bulletin h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  font-weight: 800;
  line-height: 1.42;
  color: var(--ice);
}

.page-news .news-item p,
.page-news .news-season p,
.page-news .news-bulletin p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.76;
  color: var(--mist);
}

/* ---------- 通用配图 ---------- */
.page-news .news-figure {
  margin: 30px 0 0;
}

.page-news .news-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--news-line);
  object-fit: cover;
}

.page-news .news-figure--wide img { aspect-ratio: 3 / 2; }
.page-news .news-figure--square img { aspect-ratio: 1 / 1; }
.page-news .news-figure--banner img { aspect-ratio: 8 / 3; }

.page-news .news-figure figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--mist);
}

/* ---------- 赛季 ---------- */
.page-news .news-season-grid {
  display: grid;
  gap: 18px;
}

.page-news .news-season {
  padding: 26px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line-soft);
  background: rgba(10, 33, 54, .62);
}

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

.page-news .news-windows li {
  padding: 22px 22px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line);
  background: linear-gradient(180deg, rgba(18, 58, 90, .62), rgba(10, 33, 54, .72));
}

.page-news .news-window-name {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cyan);
}

.page-news .news-windows p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--mist);
}

/* ---------- 专题：观战托管重连 ---------- */
.page-news .news-topic-grid {
  display: grid;
  gap: 30px;
}

/* ---------- 专题：地域玩法 ---------- */
.page-news .news-region-grid {
  display: grid;
  gap: 18px;
}

.page-news .news-region {
  position: relative;
  overflow: hidden;
  padding: 32px 24px 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line-soft);
  background: linear-gradient(160deg, rgba(18, 58, 90, .84), rgba(10, 33, 54, .9));
}

.page-news .news-region::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--region-color, var(--cyan));
}

.page-news .news-region--coral { --region-color: var(--coral); }
.page-news .news-region--violet { --region-color: var(--violet); }
.page-news .news-region--amber { --region-color: var(--amber); }

.page-news .news-region-city {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--region-color, var(--cyan));
}

.page-news .news-region h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.44;
  color: var(--ice);
}

.page-news .news-region p {
  margin: 0;
  font-size: 15px;
  line-height: 1.74;
  color: var(--mist);
}

/* ---------- 公告 ---------- */
.page-news .news-bulletin-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-bulletin {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 24px 24px 22px;
  border-radius: var(--r-md);
  border: 1px dashed rgba(255, 197, 61, .34);
  background: rgba(10, 33, 54, .6);
}

.page-news .news-bulletin-mark {
  font-family: var(--font-num);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--amber);
  line-height: 1;
}

.page-news .news-bulletin h3 {
  font-size: 1.08rem;
}

/* ---------- 订阅与回顾 ---------- */
.page-news .news-subscribe-body {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.page-news .news-subscribe-body .eyebrow {
  margin: 0 0 12px;
}

.page-news .news-subscribe-body .section-title {
  margin: 0 0 14px;
}

.page-news .news-subscribe-body .lede {
  max-width: 60ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.78;
  color: var(--mist);
}

.page-news .news-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- 折叠面板 ---------- */
.page-news .news-fold {
  margin-top: 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--news-line);
  background: rgba(10, 33, 54, .72);
}

.page-news .news-fold .fold-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: none;
  color: var(--ice);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.page-news .news-fold .fold-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
  border-radius: var(--r-md);
}

.page-news .news-fold-mark {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}

.page-news .news-fold-mark::before,
.page-news .news-fold-mark::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: var(--cyan);
  transition: transform .28s var(--ease);
}

.page-news .news-fold-mark::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.page-news .news-fold-mark::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.page-news .news-fold .fold-trigger[aria-expanded="true"] .news-fold-mark::after {
  transform: scaleY(0);
}

.page-news .news-fold .fold-body {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist);
}

.page-news .news-fold .fold-body p {
  margin: 0;
}

/* ---------- 响应式 ---------- */
@media (min-width: 780px) {
  .page-news .news-season-grid,
  .page-news .news-bulletin-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 860px) {
  .page-news .news-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .page-news .news-highlight:nth-child(2) {
    margin-top: 34px;
  }

  .page-news .news-highlight:nth-child(3) {
    margin-top: 68px;
  }

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

  .page-news .news-subscribe-body {
    grid-template-columns: minmax(0, 1.35fr) auto;
    align-items: end;
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .page-news .news-topic-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 940px) {
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 58px;
  }

  .page-news .news-hero-figure::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(31, 224, 208, .35);
    pointer-events: none;
  }
}

@media (min-width: 1000px) {
  .page-news .news-versions-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
  }

  .page-news .news-versions-rail {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    align-self: start;
  }
}

@media (min-width: 1120px) {
  .page-news .news-hero-copy .display-title {
    padding-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .page-news .news-item,
  .page-news .news-more,
  .page-news .news-tag {
    transition: none;
  }
}
