.page-news {
  --n-line: rgba(244, 239, 228, 0.14);
  --n-line-soft: rgba(244, 239, 228, 0.08);
  --n-line-ink: rgba(32, 48, 43, 0.14);
  --n-glass: rgba(244, 239, 228, 0.06);
  --n-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.85);
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-news .breadcrumb__link {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.page-news .breadcrumb__link:hover,
.page-news .breadcrumb__link:focus-visible {
  color: var(--gold);
}
.page-news .breadcrumb__sep {
  font-size: 12px;
  color: rgba(159, 176, 169, 0.45);
}
.page-news .breadcrumb__current {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding-top: 26px;
  padding-bottom: 8px;
}
.page-news .news-hero__head {
  display: grid;
  gap: 18px;
  padding: 26px 0 30px;
}
.page-news .news-hero__title {
  margin: 10px 0 0;
  font-size: clamp(52px, 15vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.page-news .news-hero__lede {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244, 239, 228, 0.76);
}
.page-news .news-hero__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--n-line);
  border-radius: var(--radius-card);
}
.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2000 / 800;
  min-height: 160px;
  object-fit: cover;
}
.page-news .news-hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 43, 35, 0.08) 0%, rgba(11, 43, 35, 0.74) 100%);
}
.page-news .news-hero__figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244, 239, 228, 0.7);
}
.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--n-line);
}
.page-news .news-stat {
  padding: 16px 10px 18px 0;
  border-right: 1px solid var(--n-line);
}
.page-news .news-stat:last-child {
  border-right: 0;
}
.page-news .news-stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.page-news .news-stat__label {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* ---------- 章节容器 ---------- */
.page-news .section {
  padding-top: 54px;
  padding-bottom: 54px;
}
.page-news .section--paper {
  background: var(--paper-2);
  color: var(--graphite);
}
.page-news .news-head {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--n-line);
}
.page-news .section--paper .news-head {
  border-bottom-color: var(--n-line-ink);
}
.page-news .section--paper .eyebrow {
  color: var(--amber);
}
.page-news .news-head__title {
  margin: 0;
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.page-news .news-head__note {
  margin: 0;
  max-width: 64ch;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
}
.page-news .section--paper .news-head__note {
  color: rgba(32, 48, 43, 0.68);
}

/* ---------- 本期聚焦 ---------- */
.page-news .news-focus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-news .focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px 24px;
  border: 1px solid rgba(232, 180, 74, 0.24);
  border-radius: var(--radius-card);
  background: linear-gradient(158deg, rgba(244, 239, 228, 0.1), rgba(244, 239, 228, 0.028));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease);
}
.page-news .focus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 180, 74, 0.58);
}
.page-news .focus-card::before {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(232, 180, 74, 0.62);
}
.page-news .focus-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-right: 44px;
}
.page-news .focus-card__meta .mono {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist);
}
.page-news .focus-card__title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--paper);
}
.page-news .focus-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  color: rgba(244, 239, 228, 0.72);
}

/* ---------- 观察列表 ---------- */
.page-news .news-filter {
  position: relative;
}
.page-news .news-filter__radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-news .news-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.page-news .news-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border: 1px solid rgba(32, 48, 43, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--graphite);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.page-news .news-chip:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.page-news #nf-all:checked ~ .news-filter__chips [for="nf-all"],
.page-news #nf-epl:checked ~ .news-filter__chips [for="nf-epl"],
.page-news #nf-laliga:checked ~ .news-filter__chips [for="nf-laliga"],
.page-news #nf-seriea:checked ~ .news-filter__chips [for="nf-seriea"],
.page-news #nf-bundesliga:checked ~ .news-filter__chips [for="nf-bundesliga"],
.page-news #nf-csl:checked ~ .news-filter__chips [for="nf-csl"],
.page-news #nf-acl:checked ~ .news-filter__chips [for="nf-acl"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.page-news #nf-epl:checked ~ .news-stream .news-item:not([data-league="epl"]),
.page-news #nf-laliga:checked ~ .news-stream .news-item:not([data-league="laliga"]),
.page-news #nf-seriea:checked ~ .news-stream .news-item:not([data-league="seriea"]),
.page-news #nf-bundesliga:checked ~ .news-stream .news-item:not([data-league="bundesliga"]),
.page-news #nf-csl:checked ~ .news-stream .news-item:not([data-league="csl"]),
.page-news #nf-acl:checked ~ .news-stream .news-item:not([data-league="acl"]) {
  display: none;
}
.page-news .news-stream {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-news .news-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 18px 20px;
  border: 1px solid rgba(169, 123, 46, 0.26);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: inset 3px 0 0 rgba(232, 180, 74, 0);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}
.page-news .news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 123, 46, 0.6);
  box-shadow: inset 3px 0 0 var(--gold), 0 22px 34px -28px rgba(32, 48, 43, 0.85);
}
.page-news .news-item__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.page-news .news-item__tags .mono {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(32, 48, 43, 0.54);
}
.page-news .news-item__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--graphite);
}
.page-news .news-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  color: rgba(32, 48, 43, 0.74);
}
.page-news .news-item__foot {
  margin: auto 0 0;
  padding-top: 13px;
  border-top: 1px solid rgba(32, 48, 43, 0.1);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: var(--amber);
}

/* ---------- 通栏窄图 ---------- */
.page-news .news-band {
  margin: 0;
  overflow: hidden;
}
.page-news .news-band img {
  display: block;
  width: 100%;
  height: clamp(110px, 18vw, 250px);
  object-fit: cover;
}

/* ---------- 专题系列 ---------- */
.page-news .news-series__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 180, 74, 0.5) transparent;
}
.page-news .news-series__rail:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-card);
}
.page-news .series-card {
  flex: 0 0 80%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--n-line);
  border-radius: var(--radius-card);
  background: var(--n-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  scroll-snap-align: start;
  box-shadow: var(--n-shadow);
  transition: border-color 0.26s var(--ease), transform 0.26s var(--ease);
}
.page-news .series-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 180, 74, 0.45);
}
.page-news .series-card--feature {
  flex-basis: 88%;
}
.page-news .series-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.page-news .series-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}
.page-news .series-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 43, 35, 0.05), rgba(11, 43, 35, 0.68));
}
.page-news .series-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 22px;
}
.page-news .series-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--paper);
}
.page-news .series-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(244, 239, 228, 0.7);
}
.page-news .news-series__hint {
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

/* ---------- 复盘手记 ---------- */
.page-news .notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-news .notes-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 48, 43, 0.14);
  border-radius: var(--radius-card);
}
.page-news .notes-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}
.page-news .notes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: news-note;
}
.page-news .notes-list > li {
  position: relative;
  padding: 18px 0 18px 46px;
  border-top: 1px solid rgba(32, 48, 43, 0.12);
  counter-increment: news-note;
}
.page-news .notes-list > li:last-child {
  border-bottom: 1px solid rgba(32, 48, 43, 0.12);
}
.page-news .notes-list > li::before {
  content: counter(news-note, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--amber);
}
.page-news .notes-list__title {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--graphite);
}
.page-news .notes-list__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  color: rgba(32, 48, 43, 0.72);
}

/* ---------- 归档与收藏 ---------- */
.page-news .news-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-news .archive-card {
  padding: 22px 20px 24px;
  border: 1px solid var(--n-line);
  border-radius: var(--radius-card);
  background: var(--n-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.page-news .archive-card__title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--paper);
}
.page-news .archive-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  color: rgba(244, 239, 228, 0.72);
}
.page-news .news-archive__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-news .series-card {
    flex: 0 0 340px;
  }
  .page-news .series-card--feature {
    flex-basis: 420px;
  }
  .page-news .news-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 860px) {
  .page-news .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .page-news .news-hero {
    padding-top: 40px;
  }
  .page-news .news-hero__head {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: end;
    gap: 56px;
    padding: 46px 0 52px;
  }
  .page-news .news-hero__lede {
    padding-bottom: 8px;
  }
  .page-news .news-hero__stats {
    margin-top: 34px;
  }
  .page-news .news-stat {
    padding: 20px 18px 22px 0;
  }
  .page-news .news-focus__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }
  .page-news .focus-card--a {
    grid-column: span 7;
  }
  .page-news .focus-card--b {
    grid-column: span 5;
  }
  .page-news .focus-card--c {
    grid-column: span 5;
  }
  .page-news .focus-card--d {
    grid-column: span 7;
  }
  .page-news .focus-card__title {
    font-size: 22px;
  }
  .page-news .news-stream {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
  }
  .page-news .news-item--xl {
    grid-column: span 7;
  }
  .page-news .news-item--md {
    grid-column: span 5;
  }
  .page-news .news-item--sm {
    grid-column: span 4;
  }
  .page-news .news-item--half {
    grid-column: span 6;
  }
  .page-news .news-item--xl .news-item__title {
    font-size: 23px;
  }
  .page-news .news-item--md .news-item__title,
  .page-news .news-item--half .news-item__title {
    font-size: 19px;
  }
  .page-news .notes-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
    gap: 44px;
    align-items: start;
  }
  .page-news .notes-figure {
    position: sticky;
    top: 96px;
  }
}

@media (min-width: 1100px) {
  .page-news .series-card {
    flex: 0 0 370px;
  }
  .page-news .series-card--feature {
    flex-basis: 460px;
  }
  .page-news .news-item {
    padding: 24px 22px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .focus-card,
  .page-news .news-item,
  .page-news .series-card {
    transition: none;
  }
  .page-news .focus-card:hover,
  .page-news .news-item:hover,
  .page-news .series-card:hover {
    transform: none;
  }
}
