/* ===== 赛后复盘 · 页面专属样式（作用域 .page-news） ===== */

.page-news {
  --news-line: 1px solid var(--brut);
  background: var(--night);
  color: var(--white);
  overflow-x: clip;
}

.page-news .breadcrumb {
  padding-top: clamp(14px, 3vw, 24px);
  padding-bottom: clamp(6px, 1.5vw, 12px);
}

/* ---------- 首屏拼贴 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 6vw, 62px) 0 clamp(30px, 5vw, 72px);
  background:
    radial-gradient(120% 100% at 8% 0%, rgba(60, 224, 138, 0.16), transparent 58%),
    linear-gradient(180deg, var(--night) 0%, var(--ink) 100%);
  border-bottom: 3px solid var(--brut);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -25%;
  width: 58%;
  height: 150%;
  transform: skewX(-14deg);
  background: linear-gradient(170deg, rgba(92, 141, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}

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

.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 7.6vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0.35em 0 0.55em;
  text-wrap: balance;
}

.page-news .news-hero h1::before {
  content: "";
  display: block;
  width: 62px;
  height: 7px;
  background: var(--neon);
  margin-bottom: 18px;
}

.page-news .news-hero .lede {
  max-width: 46ch;
  margin: 0 0 clamp(18px, 3vw, 26px);
  color: var(--mint);
}

.page-news .news-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--mint);
  background: rgba(16, 37, 28, 0.82);
  border: 1px solid var(--brut);
  padding: 9px 14px;
  margin: 0 0 clamp(20px, 3vw, 28px);
}

.page-news .news-hero__status::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--neon);
  box-shadow: 0 0 0 3px rgba(60, 224, 138, 0.18);
}

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

.page-news .news-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--brut);
  border: 2px solid var(--brut);
  box-shadow: var(--shadow);
  min-width: 0;
}

.page-news .hero-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--pitch);
  min-width: 0;
}

.page-news .hero-metric__num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
}

.page-news .hero-metric__unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.page-news .hero-metric__label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mint);
}

/* ---------- 章节标题统一收口 ---------- */
.page-news .section-title {
  padding-left: 16px;
  border-left: 5px solid var(--neon);
  text-wrap: balance;
}

/* ---------- 产出节点 ---------- */
.page-news .stage-list {
  list-style: none;
  margin: clamp(26px, 4vw, 38px) 0 0;
  padding: 0;
}

.page-news .stage {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(14px, 3vw, 22px);
  padding-bottom: clamp(22px, 3.5vw, 30px);
}

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

.page-news .stage:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon), var(--away));
  opacity: 0.45;
}

.page-news .stage__no {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--night);
  background: var(--neon);
  border: 2px solid var(--brut);
}

.page-news .stage__body {
  min-width: 0;
  padding-top: 2px;
}

.page-news .stage__time {
  margin: 0 0 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.page-news .stage__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 21px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--white);
}

.page-news .stage__text {
  margin: 0;
  max-width: 48ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mint);
}

/* ---------- 复盘条目时间轴 ---------- */
.page-news .rec-banner {
  margin: clamp(24px, 4vw, 34px) 0 clamp(30px, 5vw, 44px);
}

.page-news .rec-banner img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-news .rec-timeline {
  position: relative;
  display: grid;
  gap: clamp(16px, 3vw, 26px);
  padding-left: 26px;
}

.page-news .rec-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon) 0%, var(--neon) 40%, var(--away) 100%);
  opacity: 0.45;
}

.page-news .rec-card {
  position: relative;
  min-width: 0;
  background: var(--pitch);
  border: 2px solid var(--brut);
  box-shadow: 5px 5px 0 var(--brut);
  padding: clamp(16px, 3vw, 22px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-news .rec-card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  background: var(--night);
  border: 3px solid var(--neon);
}

.page-news .rec-card:hover,
.page-news .rec-card:focus-within {
  transform: translate(-3px, -3px);
  border-color: var(--neon);
  box-shadow: 8px 8px 0 var(--brut);
}

.page-news .rec-card__when {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.page-news .rec-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(19px, 3.4vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
}

.page-news .rec-half {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px 10px;
  margin: 0 0 14px;
  background: rgba(5, 9, 12, 0.68);
  border-left: 4px solid var(--neon);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.page-news .rec-half::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon) 0 50%, var(--away) 50% 100%);
}

.page-news .rec-half__label {
  margin-right: auto;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gray);
}

.page-news .rec-half__home {
  color: var(--neon);
}

.page-news .rec-half__sep {
  color: var(--gray);
}

.page-news .rec-half__away {
  color: var(--away);
}

.page-news .rec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.page-news .rec-tag {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--mint);
  border: 1px solid var(--neon);
  border-radius: 100px;
  padding: 2px 11px;
}

.page-news .rec-card__lede {
  margin: 0 0 14px;
  max-width: 52ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mint);
}

.page-news .rec-card__detail {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--brut);
}

.page-news .rec-card__detail summary {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.page-news .rec-card__detail summary::-webkit-details-marker {
  display: none;
}

.page-news .rec-card__detail summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--amber);
  font-size: 13px;
  line-height: 1;
}

.page-news .rec-card__detail[open] summary::before {
  content: "−";
}

.page-news .rec-card__detail[open] summary {
  color: var(--mint);
}

.page-news .rec-facts {
  display: grid;
  gap: 1px;
  margin: 14px 0 0;
  background: var(--brut);
  border: 1px solid var(--brut);
}

.page-news .rec-facts > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 11px;
  background: rgba(5, 9, 12, 0.72);
}

.page-news .rec-facts dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.page-news .rec-facts dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
}

.page-news .note-band {
  margin-top: clamp(24px, 4vw, 36px);
  max-width: 60ch;
}

.page-news .note-band a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 专题系列 ---------- */
.page-news .topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.6vw, 22px);
  margin-top: clamp(26px, 4vw, 38px);
}

.page-news .topic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  background: var(--night);
  border: 2px solid var(--brut);
  box-shadow: 6px 6px 0 var(--brut);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-news .topic-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--neon);
}

.page-news .topic-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.page-news .topic-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mint);
}

.page-news .topic-card__freq {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.page-news .topic-card--lead {
  padding: 0;
  gap: 0;
}

.page-news .topic-card__media {
  position: relative;
  overflow: hidden;
  background: var(--pitch);
  min-height: 190px;
}

.page-news .topic-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  max-width: 100%;
  object-fit: cover;
}

.page-news .topic-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
}

/* ---------- 单篇结构 ---------- */
.page-news .anatomy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.page-news .anatomy-grid > div {
  min-width: 0;
}

.page-news .struct-list {
  list-style: none;
  margin: clamp(24px, 4vw, 32px) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-news .struct-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: var(--news-line);
}

.page-news .struct-item:first-child {
  border-top: var(--news-line);
}

.page-news .struct-item__num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--neon);
  line-height: 1.6;
}

.page-news .struct-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.page-news .struct-item p {
  margin: 0;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mint);
}

.page-news .anatomy-media {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--brut);
  box-shadow: var(--shadow);
  background: var(--pitch);
}

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

/* ---------- 归档与检索 ---------- */
.page-news .find-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.5vw, 32px);
  margin-top: clamp(24px, 4vw, 36px);
}

.page-news .find-lanes {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.page-news .find-lane {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(11, 18, 32, 0.78);
  border: 1px solid var(--brut);
  border-left-width: 5px;
  border-left-style: solid;
}

.page-news .find-lane--day {
  border-left-color: var(--neon);
}

.page-news .find-lane--type {
  border-left-color: var(--amber);
}

.page-news .find-lane--topic {
  border-left-color: var(--away);
}

.page-news .find-lane__num {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.page-news .find-lane h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.page-news .find-lane p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mint);
}

.page-news .find-lane p:last-child {
  margin-bottom: 0;
}

.page-news .find-lane__more a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .find-lane__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .find-lane__tags a {
  display: inline-block;
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--mint);
  border: 1px solid var(--away);
  border-radius: 100px;
  padding: 1px 12px;
  text-decoration: none;
}

.page-news .find-lane__tags a:hover {
  border-color: var(--neon);
  color: var(--white);
}

.page-news .find-media {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--brut);
  box-shadow: var(--shadow);
  background: var(--pitch);
}

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

/* ---------- 投稿与更正 ---------- */
.page-news .submit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.page-news .submit-grid__main {
  min-width: 0;
}

.page-news .submit-list {
  list-style: none;
  margin: clamp(22px, 3.5vw, 30px) 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .submit-list li {
  position: relative;
  padding-left: 24px;
  max-width: 52ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mint);
}

.page-news .submit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  background: var(--neon);
}

.page-news .submit-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 3vw, 24px);
  background: var(--pitch);
  border: 2px solid var(--brut);
  box-shadow: 6px 6px 0 var(--brut);
}

.page-news .submit-aside__note {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--mint);
}

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

  .page-news .topic-card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-news .topic-card--lead .topic-card__media {
    min-height: 100%;
  }

  .page-news .topic-card--lead .topic-card__media img {
    min-height: 100%;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr);
    align-items: end;
  }

  .page-news .anatomy-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  }

  .page-news .find-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  }

  .page-news .submit-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  }
}

@media (min-width: 1080px) {
  .page-news .rec-timeline {
    padding-left: 40px;
  }

  .page-news .rec-card::before {
    left: -40px;
  }

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

  .page-news .topic-card--lead {
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .rec-card,
  .page-news .topic-card {
    transition: none;
  }

  .page-news .rec-card:hover,
  .page-news .rec-card:focus-within,
  .page-news .topic-card:hover {
    transform: none;
  }
}
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
<<<END>>>
