.page-news {
  --news-hair: 1px solid var(--ink-700);
  --news-glass-fill: rgba(20, 59, 50, 0.72);
  --news-tap-cyan: rgba(43, 245, 200, 0.14);
  --news-tap-ember: rgba(255, 90, 43, 0.16);
  background: var(--ink-900);
  color: var(--chalk-50);
}

.page-news .unit {
  font-size: 0.5em;
  margin-left: 2px;
  color: var(--mist-400);
  font-weight: 500;
}

/* ---------- 首屏 ---------- */

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 76px);
  background:
    radial-gradient(130% 100% at 80% -20%, rgba(43, 245, 200, 0.16), transparent 62%),
    linear-gradient(180deg, var(--ink-800), var(--ink-900) 84%);
  border-bottom: var(--hdr-border);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 245, 200, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 245, 200, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(90% 70% at 50% 0%, #000 0%, transparent 78%);
  mask-image: radial-gradient(90% 70% at 50% 0%, #000 0%, transparent 78%);
  pointer-events: none;
}

.page-news .news-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-news .hero-inner {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  align-items: end;
  margin-top: clamp(26px, 4vw, 44px);
}

.page-news .hero-title {
  margin: 8px 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 8.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.page-news .hero-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cyan-500), rgba(43, 245, 200, 0));
}

.page-news .hero-lead {
  max-width: 34em;
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--text-soft);
}

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

.page-news .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--ink-700);
  border: var(--news-hair);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-news .hero-stats .stat {
  display: grid;
  gap: 8px;
  padding: 18px 14px;
  background: rgba(12, 42, 34, 0.78);
}

.page-news .hero-stats .stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan-500);
}

.page-news .hero-stats .stat__value--accent {
  color: var(--ember-300);
}

.page-news .hero-stats .stat__label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--mist-400);
}

/* ---------- 专题带 ---------- */

.page-news .spotlight {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) 0 clamp(34px, 5vw, 56px);
  border-bottom: var(--hdr-border);
}

.page-news .spotlight__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.page-news .spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 22, 0.86), rgba(6, 28, 22, 0.95) 52%, var(--ink-900));
  pointer-events: none;
}

.page-news .spotlight .wrap {
  position: relative;
  z-index: 1;
}

.page-news .spotlight__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-news .spotlight__head .section__title {
  margin: 0;
}

.page-news .spotlight__scroller {
  margin-inline: calc(var(--gutter) * -1);
}

.page-news .spotlight__rail {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 6px var(--gutter) 20px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
}

.page-news .spotlight__rail::-webkit-scrollbar {
  height: 6px;
}

.page-news .spotlight__rail::-webkit-scrollbar-thumb {
  background: var(--ink-700);
  border-radius: 99px;
}

.page-news .spotlight__item {
  flex: 0 0 min(300px, 78vw);
  display: flex;
  scroll-snap-align: start;
}

.page-news .spot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 24px 20px 22px;
  border: var(--news-hair);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--news-glass-fill), rgba(12, 42, 34, 0.92));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-news .spot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 245, 200, 0.45);
}

.page-news .spot-card__idx {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: rgba(234, 244, 239, 0.16);
}

.page-news .spot-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.page-news .spot-card__sum {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ---------- 标签 ---------- */

.page-news .news-tag {
  justify-self: start;
  align-self: start;
  display: inline-block;
  padding: 6px 16px 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--cyan-200);
  background: var(--news-tap-cyan);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-news .news-tag--ember {
  color: var(--ember-300);
  background: var(--news-tap-ember);
}

/* ---------- 主体双栏 ---------- */

.page-news .news-body {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
}

.page-news .news-layout {
  display: grid;
  gap: clamp(36px, 5vw, 60px);
}

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

.page-news .block-head {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.page-news .block-head .section__eyebrow {
  margin: 0 0 10px;
}

.page-news .block-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-news .block-lead {
  max-width: 42em;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

.page-news .news-block + .news-block {
  margin-top: clamp(52px, 7vw, 88px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: var(--hdr-border);
}

.page-news .media-frame {
  margin: 0 0 clamp(24px, 3vw, 34px);
}

.page-news .media-frame__cap {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist-400);
}

/* ---------- 文章条目 ---------- */

.page-news .story-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .story {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-bottom: var(--news-hair);
}

.page-news .story:first-child {
  border-top: var(--news-hair);
}

.page-news .story__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.page-news .story__sum {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: hover) {
  .page-news .story:hover .story__sum,
  .page-news .story:focus-within .story__sum {
    -webkit-line-clamp: 8;
  }
}

/* ---------- 净胜球短文卡 ---------- */

.page-news .note-grid {
  display: grid;
  gap: 14px;
}

.page-news .note-card {
  padding: 22px 20px;
  border: var(--news-hair);
  border-left: 3px solid var(--cyan-500);
  border-radius: var(--r-sm) var(--r-md) var(--r-md) var(--r-sm);
  background: rgba(12, 42, 34, 0.62);
}

.page-news .note-card:nth-child(2) {
  border-left-color: var(--ember-500);
}

.page-news .note-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .note-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ---------- 主场与裁判 ---------- */

.page-news .officials-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.page-news .notes-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .notes-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: var(--news-hair);
}

.page-news .notes-item:first-child {
  padding-top: 0;
}

.page-news .notes-item__k {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cyan-500);
}

.page-news .notes-item:last-child .notes-item__k {
  color: var(--ember-300);
}

.page-news .notes-item__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .notes-item__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ---------- 版本更新折叠 ---------- */

.page-news .fold {
  margin-top: 12px;
  border: var(--news-hair);
  border-radius: var(--r-md);
  background: rgba(12, 42, 34, 0.55);
  overflow: hidden;
}

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

.page-news .fold__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--chalk-50);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.page-news .fold__btn::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cyan-500);
}

.page-news .fold[data-open="true"] .fold__btn::after {
  content: "−";
}

.page-news .fold__btn:hover {
  background: rgba(43, 245, 200, 0.06);
}

.page-news .fold__ver {
  flex: none;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  padding: 4px 8px;
  color: var(--ink-900);
  background: var(--cyan-500);
  border-radius: var(--r-sm);
}

.page-news .fold__panel {
  display: none;
}

.page-news .fold[data-open="true"] .fold__panel {
  display: block;
}

.page-news .fold__inner {
  padding: 0 18px 20px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}

.page-news .fold__inner p {
  margin: 0;
}

/* ---------- 侧栏 ---------- */

.page-news .news-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-news .aside-card {
  padding: 22px 20px;
}

.page-news .aside-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--cyan-200);
}

.page-news .aside-card__body {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
}

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

.page-news .mini-stats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .mini-stats__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(20, 59, 50, 0.9);
}

.page-news .mini-stats__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .mini-stats__k {
  font-size: 13px;
  color: var(--mist-400);
}

.page-news .mini-stats__v {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--chalk-50);
}

.page-news .mini-stats__v--accent {
  color: var(--ember-300);
}

/* ---------- 分类与节奏 ---------- */

.page-news .news-rhythm {
  background: var(--ink-800);
  border-top: var(--hdr-border);
  border-bottom: var(--hdr-border);
}

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

.page-news .rhythm-flow .section__title {
  margin-bottom: 22px;
}

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

.page-news .cat-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: var(--news-hair);
}

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

.page-news .cat-item__k {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--cyan-200);
}

.page-news .cat-item__v {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-news .timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .timeline__item {
  position: relative;
  padding: 0 0 24px 24px;
  border-left: 1px solid var(--ink-700);
}

.page-news .timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-news .timeline__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(43, 245, 200, 0.14);
}

.page-news .timeline__item:last-child::before {
  background: var(--ember-500);
  box-shadow: 0 0 0 4px rgba(255, 90, 43, 0.16);
}

.page-news .timeline__k {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--chalk-50);
}

.page-news .timeline__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dim);
}

/* ---------- 勘误引导 ---------- */

.page-news .news-callout {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
}

.page-news .callout {
  display: grid;
  gap: 26px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 90, 43, 0.34);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 90, 43, 0.16), transparent 62%),
    linear-gradient(140deg, rgba(20, 59, 50, 0.85), rgba(12, 42, 34, 0.95));
}

.page-news .callout__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-news .callout__body {
  max-width: 46em;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}

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

/* ---------- 媒体查询 ---------- */

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

@media (min-width: 900px) {
  .page-news .hero-inner {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  }

  .page-news .officials-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
  }

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

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.85fr);
    align-items: start;
  }

  .page-news .news-aside {
    position: sticky;
    top: 96px;
  }

  .page-news .spotlight__item {
    flex-basis: 320px;
  }
}

@media (min-width: 1180px) {
  .page-news .note-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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