.page-news {
  --n-rule: rgba(159, 179, 190, .22);
  --n-rule-strong: rgba(159, 179, 190, .42);
  --n-dot-stoppage: var(--stoppage);
  --n-dot-season: var(--dai);
  --n-dot-archive: var(--amber);
  --n-dot-youth: var(--teal);
  --n-dot-revision: var(--cold);
  display: block;
  background: var(--ink);
  color: var(--fog);
  overflow-x: clip;
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 20px 0 16px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--mist);
}
.page-news .breadcrumb a {
  color: var(--cold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* ---------- 首屏框景 ---------- */
.page-news .notes-hero {
  position: relative;
  border-top: 1px solid var(--n-rule-strong);
  border-bottom: 1px solid var(--n-rule-strong);
  background:
    radial-gradient(120% 92% at 10% 0%, rgba(42, 90, 99, .58) 0%, rgba(20, 49, 58, 0) 64%),
    linear-gradient(180deg, var(--bridge) 0%, var(--ink) 100%);
}
.page-news .notes-hero::before,
.page-news .notes-hero::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.page-news .notes-hero::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--amber);
  border-left: 1px solid var(--amber);
}
.page-news .notes-hero::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
}

.page-news .notes-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 44px;
}

.page-news .notes-hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(42px, 11vw, 84px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 14px 0 18px;
  color: var(--paper);
}

.page-news .notes-hero__lead {
  max-width: 46ch;
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fog);
}

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

.page-news .notes-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--n-rule);
  background: var(--n-rule);
}
.page-news .notes-fact {
  background: rgba(13, 20, 24, .72);
  padding: 14px 12px;
}
.page-news .notes-fact dt {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cold);
  white-space: nowrap;
}
.page-news .notes-fact dd {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  line-height: 1;
  color: var(--amber);
}
.page-news .notes-fact dd span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--mist);
  margin-left: 3px;
}

.page-news .notes-hero__media {
  position: relative;
  margin: 0;
  border-top: 1px solid var(--n-rule-strong);
  overflow: hidden;
}
.page-news .notes-hero__media img {
  display: block;
  width: 100%;
  height: clamp(200px, 40vw, 420px);
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}
.page-news .notes-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 90, 99, .38) 0%, rgba(13, 20, 24, .78) 100%);
  pointer-events: none;
}
.page-news .notes-hero__media figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--cold);
}

/* ---------- 分类跳转条 ---------- */
.page-news .notes-tags {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: rgba(13, 20, 24, .94);
  border-bottom: 1px solid var(--n-rule);
}
.page-news .tag-bar {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-news .tag-bar::-webkit-scrollbar {
  display: none;
}
.page-news .tag-bar .tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--n-rule-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--cold);
  font-size: 13px;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
}
.page-news .tag-bar .tag:hover,
.page-news .tag-bar .tag:focus-visible {
  border-color: var(--amber);
  color: var(--paper);
  background: rgba(242, 178, 98, .08);
}
.page-news .tag__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cold);
}
.page-news .tag--stoppage .tag__dot { background: var(--n-dot-stoppage); }
.page-news .tag--season .tag__dot { background: var(--n-dot-season); }
.page-news .tag--archive .tag__dot { background: var(--n-dot-archive); }
.page-news .tag--youth .tag__dot { background: var(--n-dot-youth); }
.page-news .tag--revision .tag__dot { background: var(--n-dot-revision); }

/* ---------- 分区外壳 ---------- */
.page-news .notes-section {
  padding: 60px 0;
}
.page-news .notes-section--fog {
  --n-rule: rgba(13, 20, 24, .12);
  --n-rule-strong: rgba(13, 20, 24, .22);
  background: var(--fog);
  color: var(--bridge);
}
.page-news .notes-section--paper {
  --n-rule: rgba(13, 20, 24, .12);
  --n-rule-strong: rgba(13, 20, 24, .22);
  background: var(--paper);
  color: var(--bridge);
}
.page-news .notes-section--ink {
  background:
    radial-gradient(100% 80% at 88% 6%, rgba(42, 90, 99, .42) 0%, rgba(13, 20, 24, 0) 62%),
    var(--ink);
  color: var(--fog);
}
.page-news .notes-section--bridge {
  background:
    linear-gradient(180deg, var(--bridge) 0%, #102730 100%);
  color: var(--fog);
}

.page-news .section-head {
  display: grid;
  gap: 10px;
  max-width: 62ch;
  margin-bottom: 34px;
}
.page-news .section-head .h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 5.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.page-news .notes-section--fog .section-head .h2,
.page-news .notes-section--paper .section-head .h2 {
  color: var(--ink);
}
.page-news .section-head--dark .h2 {
  color: var(--paper);
}
.page-news .section-head__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mist);
}
.page-news .notes-section--bridge .section-head__note {
  color: var(--cold);
}
.page-news .notes-section--fog .eyebrow,
.page-news .notes-section--paper .eyebrow {
  color: var(--dai);
}

/* ---------- 最近更新列表 ---------- */
.page-news .note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--n-rule-strong);
}
.page-news .note-item {
  display: grid;
  grid-template-columns: 26px 10px minmax(0, 1fr);
  column-gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--n-rule);
  transition: background-color .22s var(--ease);
}
.page-news .note-item:hover {
  background: rgba(42, 90, 99, .06);
}
.page-news .note-item__idx {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  line-height: 1.7;
  color: var(--cold);
}
.page-news .note-item__dot {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--cold);
}
.page-news .note-item__dot--stoppage { background: var(--n-dot-stoppage); }
.page-news .note-item__dot--season { background: var(--n-dot-season); }
.page-news .note-item__dot--archive { background: var(--n-dot-archive); }
.page-news .note-item__dot--youth { background: var(--n-dot-youth); }
.page-news .note-item__dot--revision { background: var(--n-dot-revision); }

.page-news .note-item__body {
  min-width: 0;
}
.page-news .note-item__title {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 90, 99, .3);
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.page-news .note-item__title:hover,
.page-news .note-item__title:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.page-news .note-item__meta {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--mist);
}
.page-news .note-item__cat {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 7px;
  border: 1px solid rgba(42, 90, 99, .34);
  border-radius: 2px;
  font-size: 11px;
  color: var(--dai);
}
.page-news .note-item__more {
  margin-top: 10px;
}
.page-news .note-item__more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--dai);
}
.page-news .note-item__more summary::-webkit-details-marker {
  display: none;
}
.page-news .note-item__more summary::before {
  content: "＋";
  font-size: 12px;
  color: var(--orange);
}
.page-news .note-item__more[open] summary::before {
  content: "－";
}
.page-news .note-item__more p {
  margin: 10px 0 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.9;
  color: #2f4a52;
}

.page-news .notes-latest__foot {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--mist);
}
.page-news .notes-latest__foot a,
.page-news .notes-revision__foot a,
.page-news .notes-pair a,
.page-news .notes-cta a {
  color: var(--dai);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 90, 99, .38);
}
.page-news .notes-latest__foot a:hover,
.page-news .notes-revision__foot a:hover,
.page-news .notes-pair a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ---------- 专题区 ---------- */
.page-news .notes-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.page-news .notes-feature__copy .h2 {
  margin: 12px 0 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 5.4vw, 38px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--paper);
}
.page-news .notes-feature__copy p {
  margin: 0 0 20px;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.9;
  color: var(--fog);
}
.page-news .notes-feature__points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--n-rule);
}
.page-news .notes-feature__points li {
  padding: 13px 0 13px 16px;
  border-bottom: 1px solid var(--n-rule);
  font-size: 15px;
  line-height: 1.8;
  color: var(--cold);
  position: relative;
}
.page-news .notes-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.page-news .notes-feature__points b {
  color: var(--paper);
  font-weight: 600;
  margin-right: 6px;
}
.page-news .notes-feature__media {
  margin: 0;
  position: relative;
  border: 1px solid var(--n-rule-strong);
  overflow: hidden;
}
.page-news .notes-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
}
.page-news .notes-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 90, 99, .3) 0%, rgba(13, 20, 24, .62) 100%);
  pointer-events: none;
}
.page-news .notes-feature__media figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--cold);
}

/* ---------- 赛季节点 ---------- */
.page-news .notes-wide {
  margin: 0 0 36px;
  border: 1px solid var(--n-rule-strong);
  overflow: hidden;
}
.page-news .notes-wide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  filter: saturate(.74) contrast(1.04);
}
.page-news .notes-wide figcaption {
  display: block;
  padding: 10px 14px;
  border-top: 1px solid var(--n-rule);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--mist);
}

.page-news .season-nodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--n-rule-strong);
}
.page-news .season-node {
  padding: 22px 0 22px 18px;
  border-bottom: 1px solid var(--n-rule);
  position: relative;
}
.page-news .season-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 2px;
  height: 26px;
  background: var(--dai);
}
.page-news .season-node__idx {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--orange);
}
.page-news .season-node .h3 {
  margin: 8px 0 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.page-news .season-node p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #2f4a52;
}

/* ---------- 档案考据 + 青训观察 ---------- */
.page-news .notes-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-news .notes-pair__main,
.page-news .notes-pair__side {
  padding: 24px 20px;
  background: var(--paper);
  border: 1px solid var(--n-rule-strong);
}
.page-news .notes-pair__side {
  background: transparent;
  border-style: dashed;
  border-color: rgba(42, 90, 99, .4);
}
.page-news .notes-pair__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--paper);
  background: var(--dai);
  border-radius: 2px;
}
.page-news .notes-pair__tag--youth {
  background: var(--teal);
  color: var(--ink);
}
.page-news .notes-pair .h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}
.page-news .notes-pair p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #2f4a52;
}
.page-news .notes-pair p:last-child {
  margin-bottom: 0;
}

/* ---------- 修订记录 ---------- */
.page-news .notes-inline-media {
  margin: 0 0 28px;
  border: 1px solid var(--n-rule-strong);
  overflow: hidden;
}
.page-news .notes-inline-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  filter: saturate(.6) contrast(1.1) brightness(.92);
}
.page-news .notes-inline-media figcaption {
  display: block;
  padding: 10px 14px;
  border-top: 1px solid var(--n-rule);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--cold);
}

.page-news .notes-table {
  border: 1px solid var(--n-rule-strong);
  background: rgba(13, 20, 24, .55);
}
.page-news .notes-table .data-table {
  min-width: 640px;
}
.page-news .notes-table .data-table th {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--cold);
}
.page-news .notes-table .data-table td {
  border-top: 1px solid var(--n-rule);
  color: var(--fog);
  font-size: 14px;
}
.page-news .notes-table .data-table tbody tr:hover {
  background: rgba(44, 198, 174, .07);
}
.page-news .notes-table .stoppage-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stoppage);
  animation: notesBreath 2.4s ease-in-out infinite;
}

@keyframes notesBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .42; transform: scale(.82); }
}

.page-news .notes-revision__foot {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--cold);
}
.page-news .notes-revision__foot a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 198, 174, .42);
}
.page-news .notes-revision__foot a:hover {
  border-bottom-color: var(--teal);
}

/* ---------- 更新节奏 ---------- */
.page-news .cadence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-news .cadence-card {
  padding: 22px 18px;
  border: 1px solid var(--n-rule-strong);
  border-top: 2px solid var(--dai);
  background: var(--fog);
}
.page-news .cadence-card__when {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--orange);
}
.page-news .cadence-card .h3 {
  margin: 10px 0 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.page-news .cadence-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #2f4a52;
}

.page-news .notes-cta {
  margin-top: 32px;
  padding: 24px 20px;
  border: 1px solid rgba(228, 118, 42, .45);
  background: linear-gradient(120deg, rgba(228, 118, 42, .1) 0%, rgba(42, 90, 99, .08) 100%);
}
.page-news .notes-cta p {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.9;
  color: #2f4a52;
}
.page-news .notes-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 滚动显现 ---------- */
.page-news [data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .48s var(--ease), transform .48s var(--ease);
}
.has-js .page-news [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}
.has-js .page-news [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 回到顶部 ---------- */
.page-news .to-top {
  display: block;
  margin: 0 auto 40px;
  padding: 10px 20px;
  border: 1px solid var(--n-rule-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--cold);
  font-size: 12px;
  letter-spacing: .18em;
  cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.page-news .to-top:hover,
.page-news .to-top:focus-visible {
  border-color: var(--amber);
  color: var(--paper);
}

/* ---------- 平板 ---------- */
@media (min-width: 700px) {
  .page-news .notes-section {
    padding: 76px 0;
  }
  .page-news .season-nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
  .page-news .cadence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-news .notes-hero__grid {
    padding-top: 68px;
    padding-bottom: 56px;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 960px) {
  .page-news .notes-section {
    padding: 96px 0;
  }
  .page-news .notes-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: end;
    gap: 56px;
    padding-top: 84px;
    padding-bottom: 64px;
  }
  .page-news .notes-hero__facts {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .page-news .notes-fact {
    padding: 16px 18px;
  }
  .page-news .notes-fact dd {
    font-size: 32px;
  }
  .page-news .notes-feature__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
  }
  .page-news .notes-feature__copy { order: 1; }
  .page-news .notes-feature__media { order: 2; }
  .page-news .notes-feature--flip .notes-feature__copy { order: 2; }
  .page-news .notes-feature--flip .notes-feature__media { order: 1; }
  .page-news .notes-pair {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 32px;
  }
  .page-news .notes-pair__main,
  .page-news .notes-pair__side {
    padding: 32px 28px;
  }
  .page-news .cadence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .page-news .notes-cta {
    padding: 32px 28px;
  }
  .page-news .note-item {
    grid-template-columns: 34px 10px minmax(0, 1fr);
    column-gap: 16px;
    padding: 20px 0;
  }
  .page-news .notes-wide {
    margin-bottom: 44px;
  }
}

/* ---------- 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news [data-reveal] {
    transition: opacity .15s linear;
  }
  .has-js .page-news [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .page-news .notes-table .stoppage-dot {
    animation: none;
  }
}
</final>
<<<END>>>
</final>
