.page-news {
  --news-radius: 2px;
  --news-cut: 22px;
  --news-gap: 20px;
  overflow-x: hidden;
}

/* ---------- 面包屑 ---------- */
.page-news .news-crumb {
  padding-top: 18px;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding-bottom: 0;
  background:
    radial-gradient(110% 70% at 92% -10%, rgba(53, 242, 160, 0.11), transparent 62%),
    radial-gradient(80% 60% at 4% 10%, rgba(255, 122, 26, 0.07), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, #0d1727 100%);
  border-bottom: 1px solid var(--line);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(233, 241, 247, 0.028) 0px,
    rgba(233, 241, 247, 0.028) 1px,
    transparent 1px,
    transparent 4px
  );
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  padding-bottom: 34px;
}

.page-news .news-hero__kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.page-news .news-hero h1 {
  margin: 0 0 18px;
  max-width: 20ch;
  font-family: var(--sans);
  font-size: clamp(28px, 7.4vw, 54px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--white);
}

.page-news .news-hero__lede {
  max-width: 40ch;
  margin: 0 0 26px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.8;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-news .news-stat--alt .stat-score__value {
  color: var(--cyan);
  font-size: clamp(26px, 6vw, 40px);
}

/* ---------- 章节索引条 ---------- */
.page-news .news-toc {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-top: 22px;
  padding-bottom: 6px;
  scrollbar-width: none;
}

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

.page-news .news-toc__item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--mist);
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(19, 30, 51, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-toc__idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
}

.page-news .news-toc__item:hover,
.page-news .news-toc__item:focus-visible {
  color: var(--white);
  border-color: var(--green);
}

/* ---------- 顶部横幅 ---------- */
.page-news .news-banner {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
}

/* ---------- 章节头微调 ---------- */
.page-news .chapter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 22px;
}

.page-news .chapter-head__title {
  flex: 1 1 260px;
  font-size: clamp(19px, 4.6vw, 26px);
  line-height: 1.35;
}

.page-news .chapter-head__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

/* ---------- 01 索引与标签 ---------- */
.page-news .news-index {
  padding-bottom: 34px;
}

.page-news .news-index__bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.page-news .news-chip {
  flex: 0 0 auto;
  padding: 9px 15px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist);
  background: var(--stand);
  border: 1px solid var(--line);
  border-radius: var(--news-radius);
  cursor: pointer;
  clip-path: polygon(
    9px 0,
    100% 0,
    100% calc(100% - 9px),
    calc(100% - 9px) 100%,
    0 100%,
    0 9px
  );
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.page-news .news-chip[data-state="active"] {
  color: var(--night);
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 2px var(--deep-green);
}

.page-news .news-index__note {
  max-width: 62ch;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist);
}

/* ---------- 02 条目列表 ---------- */
.page-news .brief-list {
  border-top: 1px solid var(--line);
}

.page-news .brief {
  position: relative;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-news .brief:hover {
  background: rgba(19, 30, 51, 0.45);
}

.page-news .brief[open] {
  background: rgba(19, 30, 51, 0.6);
  border-left-color: var(--green);
}

.page-news .brief__sum {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 18px 12px 18px 10px;
  cursor: pointer;
  list-style: none;
}

.page-news .brief__sum::-webkit-details-marker {
  display: none;
}

.page-news .brief__idx {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--mist);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.page-news .brief[open] .brief__idx {
  color: var(--green);
}

.page-news .brief__body {
  display: block;
}

.page-news .brief__tag {
  display: inline-block;
  margin-bottom: 9px;
  padding: 2px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid currentColor;
  border-radius: var(--news-radius);
  opacity: 0.9;
}

.page-news .brief__tag--preview {
  color: var(--cyan);
  background: rgba(43, 224, 208, 0.08);
}

.page-news .brief__tag--review {
  color: var(--green);
  background: rgba(53, 242, 160, 0.08);
}

.page-news .brief__tag--transfer {
  color: var(--amber);
  background: rgba(255, 194, 75, 0.08);
}

.page-news .brief__tag--stoppage {
  color: var(--orange);
  background: rgba(255, 122, 26, 0.1);
}

.page-news .brief__title {
  display: block;
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.page-news .brief__excerpt {
  display: block;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
}

.page-news .brief__meta {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(154, 169, 188, 0.72);
}

.page-news .brief__more {
  padding: 4px 12px 22px 10px;
}

/* ---------- 通用要点列表 ---------- */
.page-news .point-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-news .point-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--mist);
}

.page-news .point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--cyan);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ---------- 数据表 ---------- */
.page-news .news-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.page-news .news-table caption {
  padding-bottom: 10px;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-news .news-table th,
.page-news .news-table td {
  padding: 9px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.page-news .news-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  font-weight: 500;
}

.page-news .news-table td {
  color: var(--white);
  font-family: var(--mono);
}

.page-news .news-table td:first-child {
  font-family: var(--sans);
  color: var(--mist);
}

/* ---------- 时间戳流 ---------- */
.page-news .tsbar {
  margin: 12px 0 0;
  padding: 0 0 0 20px;
  list-style: none;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.page-news .tsbar--large {
  gap: 18px;
}

.page-news .tsbar__item {
  position: relative;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--mist);
}

.page-news .tsbar__item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--orange);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform 0.16s ease;
}

.page-news .tsbar__item:hover::before {
  transform: translateX(2px);
}

.page-news .tsbar__min {
  display: inline-block;
  min-width: 58px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.page-news .stoppage-flow__intro {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--mist);
}

.page-news .stoppage-flow__foot {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mist);
}

.page-news .stoppage-flow__foot a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 224, 208, 0.4);
}

.page-news .stoppage-flow__foot a:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 03 转会窗 ---------- */
.page-news .window-grid {
  display: grid;
  gap: 18px;
}

.page-news .window-card {
  position: relative;
  padding: 26px 22px 24px;
  background: var(--stand);
  clip-path: polygon(
    0 0,
    calc(100% - var(--news-cut)) 0,
    100% var(--news-cut),
    100% 100%,
    var(--news-cut) 100%,
    0 calc(100% - var(--news-cut))
  );
}

.page-news .window-card--winter {
  box-shadow: inset 3px 0 0 var(--cyan);
}

.page-news .window-card--summer {
  box-shadow: inset 3px 0 0 var(--amber);
}

.page-news .window-card__label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mist);
}

.page-news .window-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.page-news .window-card__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist);
}

.page-news .window-card__facts {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
}

.page-news .window-card__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.page-news .window-card__facts dt {
  font-size: 13px;
  color: var(--mist);
}

.page-news .window-card__facts dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--green);
}

.page-news .window-cover {
  margin: 24px 0 0;
}

/* ---------- 04 补时 ---------- */
.page-news .stoppage-grid {
  display: grid;
  gap: 26px;
}

.page-news .stoppage-cover {
  margin: 0;
}

/* ---------- 05 赛季专题 ---------- */
.page-news .phase-strip {
  display: grid;
  gap: 16px;
}

.page-news .phase-card {
  position: relative;
  padding: 22px 20px 20px;
  background: rgba(19, 30, 51, 0.72);
  border-left: 2px solid var(--line);
  transition: border-color 0.2s ease;
}

.page-news .phase-card:hover {
  border-left-color: var(--green);
}

.page-news .phase-card--a {
  border-left-color: var(--cyan);
}

.page-news .phase-card--b {
  border-left-color: var(--orange);
}

.page-news .phase-card--c {
  border-left-color: var(--green);
}

.page-news .phase-card__num {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
}

.page-news .phase-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.page-news .phase-card__text {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--mist);
}

.page-news .phase-card__meta {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.page-news .season-note {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.page-news .season-note__figure {
  margin: 0;
}

.page-news .season-note__text p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--mist);
}

/* ---------- 06 订阅 ---------- */
.page-news .sub-panel {
  position: relative;
  padding: 30px 22px 28px;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(53, 242, 160, 0.14), transparent 58%),
    linear-gradient(150deg, var(--deep-green) 0%, var(--stand) 62%, #101a2c 100%);
  border-left: 3px solid var(--green);
  clip-path: polygon(
    0 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% 100%,
    30px 100%,
    0 calc(100% - 30px)
  );
}

.page-news .sub-panel__label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--amber);
}

.page-news .sub-panel__title {
  margin: 0 0 14px;
  font-size: clamp(19px, 4.8vw, 27px);
  font-weight: 900;
  line-height: 1.32;
  color: var(--white);
}

.page-news .sub-panel__text {
  max-width: 58ch;
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--mist);
}

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

.page-news .sub-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(43, 224, 208, 0.16);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mist);
}

.page-news .sub-list__k {
  flex: 0 0 76px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--green);
}

.page-news .sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 平板 ---------- */
@media (min-width: 700px) {
  .page-news .brief__sum {
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 22px 16px 22px 14px;
  }

  .page-news .brief__idx {
    font-size: 30px;
  }

  .page-news .brief__title {
    font-size: 19px;
  }

  .page-news .brief__more {
    padding: 6px 16px 26px 100px;
  }

  .page-news .news-table {
    max-width: 620px;
  }

  .page-news .stoppage-grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
    gap: 32px;
  }

  .page-news .season-note {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .page-news .sub-panel {
    padding: 38px 36px 34px;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 1000px) {
  .page-news .news-hero__inner {
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .page-news .brief__sum {
    grid-template-columns: 96px 1fr;
    padding: 26px 20px 26px 16px;
  }

  .page-news .brief__idx {
    font-size: 38px;
  }

  .page-news .brief__title {
    font-size: 21px;
  }

  .page-news .brief__more {
    padding: 8px 20px 32px 132px;
  }

  .page-news .window-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-news .phase-strip {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
  }

  .page-news .window-cover {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .brief,
  .page-news .news-chip,
  .page-news .phase-card,
  .page-news .news-toc__item,
  .page-news .tsbar__item::before {
    transition: none;
  }
}
