.page-news {
  --news-hair: rgba(154, 169, 184, 0.26);
  --news-soft: rgba(232, 241, 248, 0.82);
  background: var(--ink-blue);
  color: var(--mist);
  overflow-x: clip;
}

.page-news .shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel);
}

.page-news .breadcrumb a {
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

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

.page-news .breadcrumb__sep {
  color: rgba(154, 169, 184, 0.5);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  padding-block: 36px 52px;
  background:
    radial-gradient(120% 150% at 4% 0%, rgba(10, 110, 189, 0.34), transparent 56%),
    linear-gradient(180deg, var(--night), var(--ink-blue));
}

.page-news .news-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: var(--mist);
}

.page-news .news-hero__lead {
  margin: 20px 0 0;
  max-width: 42em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--news-soft);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.page-news .news-hero__panel {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--news-hair);
  clip-path: var(--cut-md);
}

.page-news .stat-block {
  padding: 20px 22px;
  background: linear-gradient(150deg, rgba(10, 110, 189, 0.22), rgba(7, 19, 32, 0.72));
}

.page-news .stat-block__num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lime);
}

.page-news .stat-block:nth-child(2) .stat-block__num {
  color: var(--sky);
}

.page-news .stat-block:nth-child(3) .stat-block__num {
  color: var(--ref-yellow);
}

.page-news .stat-block__label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel);
}

/* ---------- 通用区块头 ---------- */
.page-news .news-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px 28px;
  margin-bottom: 22px;
}

.page-news .news-h2 {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(21px, 3.4vw, 33px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: var(--mist);
}

.page-news .news-section-head .news-h2 {
  margin-top: 8px;
}

/* ---------- 窗口期滚动条 ---------- */
.page-news .ticker-zone {
  padding-block: 44px 56px;
  background: linear-gradient(180deg, var(--ink-blue) 0%, #2c0d1a 58%, var(--wine) 100%);
}

.page-news .ticker {
  position: relative;
  overflow: hidden;
  padding-block: 14px;
  background: rgba(7, 19, 32, 0.62);
  border-top: 1px solid rgba(255, 210, 63, 0.36);
  border-bottom: 1px solid rgba(255, 210, 63, 0.36);
}

.page-news .ticker::before,
.page-news .ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.page-news .ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 19, 32, 0.96), rgba(7, 19, 32, 0));
}

.page-news .ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 19, 32, 0.96), rgba(7, 19, 32, 0));
}

.page-news .ticker__track {
  display: flex;
  width: max-content;
  animation: news-ticker-roll 54s linear infinite;
}

.page-news .ticker:hover .ticker__track,
.page-news .ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

.page-news .ticker__list {
  display: flex;
  align-items: center;
  gap: 44px;
  margin: 0;
  padding: 0 44px 0 0;
  list-style: none;
}

.page-news .ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--mist);
  transition: color var(--dur-fast) var(--ease);
}

.page-news .ticker__item:hover,
.page-news .ticker__item:focus-within {
  color: var(--lime);
}

.page-news .ticker__text {
  font-weight: 500;
  letter-spacing: 0.01em;
}

@keyframes news-ticker-roll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.page-news .ticker-figure {
  margin: 30px 0 0;
  background: var(--night);
  clip-path: var(--cut-md);
}

.page-news .ticker-figure img {
  display: block;
  width: 100%;
  height: clamp(170px, 30vw, 330px);
  object-fit: cover;
}

.page-news .media__caption {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--steel);
  background: rgba(7, 19, 32, 0.86);
}

/* ---------- 赛场观察 ---------- */
.page-news .round-watch {
  padding-block: 52px;
  background: var(--ink-blue);
}

.page-news .round-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  border-left: 1px solid rgba(182, 255, 60, 0.32);
}

.page-news .round-item {
  position: relative;
  padding-bottom: 26px;
}

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

.page-news .round-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-news .round-item__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ref-yellow);
}

.page-news .round-item__badge .num {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.page-news .entry-card {
  padding: 20px 22px 22px;
  background: linear-gradient(152deg, rgba(10, 110, 189, 0.2), rgba(7, 19, 32, 0.74));
  clip-path: var(--cut-md);
}

.page-news .entry-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.38;
  color: var(--mist);
}

.page-news .entry-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 12px 0 0;
}

.page-news .entry-card__lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(232, 241, 248, 0.86);
}

.page-news .entry-card__more {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--news-hair);
}

.page-news .entry-card__more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--lime);
  list-style: none;
}

.page-news .entry-card__more summary::-webkit-details-marker {
  display: none;
}

.page-news .entry-card__more summary::after {
  content: "＋";
  font-family: var(--font-num);
  font-size: 14px;
}

.page-news .entry-card__more[open] summary::after {
  content: "－";
}

.page-news .entry-card__more p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--news-soft);
}

.page-news .news-aside {
  margin-top: 36px;
}

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

.page-news .news-aside__fig img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: var(--cut-md);
}

.page-news .news-aside__fig .media__caption {
  padding-inline: 0;
  background: none;
}

.page-news .news-aside__note {
  margin-top: 22px;
  padding: 20px 22px;
  background: rgba(15, 76, 92, 0.38);
  clip-path: var(--cut-md);
}

.page-news .news-aside__note p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-soft);
}

.page-news .news-aside__note .btn {
  margin-top: 16px;
}

/* ---------- 专题系列 ---------- */
.page-news .series {
  padding-block: 52px;
  background: linear-gradient(180deg, rgba(59, 42, 107, 0.92), rgba(11, 27, 43, 0.96));
}

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

.page-news .series-card {
  padding: 22px 22px 24px;
  background: rgba(7, 19, 32, 0.6);
  border-top: 2px solid var(--sky);
  clip-path: var(--cut-md);
  transition: transform var(--dur-mid) var(--ease), background var(--dur-mid) var(--ease);
}

.page-news .series-card:hover {
  transform: translateY(-4px);
  background: rgba(10, 110, 189, 0.3);
}

.page-news .series-card:nth-child(2) {
  border-top-color: var(--lime);
}

.page-news .series-card:nth-child(3) {
  border-top-color: var(--ref-yellow);
}

.page-news .series-card__title {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  color: var(--mist);
}

.page-news .series-card__desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-soft);
}

.page-news .series-figure {
  margin: 30px 0 0;
}

.page-news .series-figure img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: var(--cut-md);
}

.page-news .series-figure .media__caption {
  padding-inline: 0;
  background: none;
}

/* ---------- 栏目分类 ---------- */
.page-news .taxonomy-zone {
  padding-block: 52px;
  background: var(--ink-blue);
}

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

.page-news .taxonomy__item {
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(10, 110, 189, 0.16), rgba(7, 19, 32, 0.6));
  clip-path: var(--cut-sm);
}

.page-news .taxonomy__name {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mist);
}

.page-news .taxonomy__count {
  display: block;
  margin-top: 10px;
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
}

.page-news .taxonomy__item:nth-child(2) .taxonomy__count {
  color: var(--sky);
}

.page-news .taxonomy__item:nth-child(3) .taxonomy__count {
  color: var(--ref-yellow);
}

.page-news .taxonomy__item:nth-child(4) .taxonomy__count {
  color: var(--mist);
}

.page-news .taxonomy__desc {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.78;
  color: var(--steel);
}

/* ---------- 归档检索 ---------- */
.page-news .archive-zone {
  padding-block: 52px 60px;
  background: linear-gradient(180deg, var(--ink-blue), var(--night));
}

.page-news .archive-list {
  display: grid;
  gap: 12px;
}

.page-news .archive-item {
  padding: 0 22px;
  background: rgba(15, 76, 92, 0.28);
  clip-path: var(--cut-sm);
  border-left: 2px solid var(--water-blue);
}

.page-news .archive-item[open] {
  background: rgba(10, 110, 189, 0.2);
  border-left-color: var(--lime);
}

.page-news .archive-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mist);
  list-style: none;
}

.page-news .archive-item summary::-webkit-details-marker {
  display: none;
}

.page-news .archive-item summary::before {
  content: "▸";
  font-size: 13px;
  color: var(--lime);
  transition: transform var(--dur-fast) var(--ease);
}

.page-news .archive-item[open] summary::before {
  transform: rotate(90deg);
}

.page-news .archive-item p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--news-soft);
}

/* ---------- 订阅提醒 ---------- */
.page-news .subscribe {
  padding-block: 0 72px;
  background: var(--night);
}

.page-news .subscribe__panel {
  display: grid;
  gap: 26px;
  padding: 30px 22px;
  background: linear-gradient(150deg, rgba(110, 31, 58, 0.72), rgba(7, 19, 32, 0.94));
  clip-path: var(--cut-lg);
}

.page-news .subscribe__lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--news-soft);
}

.page-news .subscribe__points {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.page-news .subscribe__points li {
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

.page-news .subscribe__points li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--ref-yellow);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

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

.page-news .subscribe__text .index-label {
  display: block;
  margin-top: 16px;
  line-height: 1.7;
}

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

.page-news .subscribe__fig img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: var(--cut-md);
}

.page-news .subscribe__fig .media__caption {
  padding-inline: 0;
  background: none;
}

/* ---------- 响应式 ---------- */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding-block: 54px 74px;
  }

  .page-news .news-hero__panel {
    margin-top: 0;
  }

  .page-news .news-aside {
    margin-top: 0;
  }

  .page-news .round-watch,
  .page-news .series,
  .page-news .taxonomy-zone,
  .page-news .archive-zone {
    padding-block: 76px;
  }

  .page-news .series-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-news .taxonomy {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-news .subscribe__panel {
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
    gap: 34px;
    padding: 42px 40px;
  }

  .page-news .subscribe {
    padding-bottom: 96px;
  }

  .page-news .archive-item {
    padding-inline: 28px;
  }
}

@media (min-width: 1080px) {
  .page-news .taxonomy {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .round-watch,
  .page-news .series,
  .page-news .taxonomy-zone,
  .page-news .archive-zone {
    padding-block: 92px;
  }
}

@media (max-width: 480px) {
  .page-news .news-hero__actions .btn,
  .page-news .subscribe__actions .btn {
    width: 100%;
    text-align: center;
  }

  .page-news .ticker__list {
    gap: 30px;
    padding-right: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .ticker__track {
    animation: none;
  }

  .page-news .series-card:hover {
    transform: none;
  }

  .page-news .archive-item summary::before {
    transition: none;
  }
}
