.page-news {
  --news-rail-w: 286px;
  --news-gap: clamp(20px, 3vw, 40px);
  background: var(--c-paper);
  color: var(--c-night);
}

.page-news .notes-masthead,
.page-news .stream-block,
.page-news .notes-topics {
  scroll-margin-top: 96px;
}

.page-news .eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-orange);
}

/* ---------- 首屏 ---------- */
.page-news .notes-masthead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 4vw, 40px) 0 clamp(34px, 5vw, 62px);
  background: linear-gradient(155deg, #0B1B3A 0%, #132A55 55%, #075E43 138%);
  color: var(--c-paper);
}

.page-news .notes-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(201, 209, 217, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 209, 217, 0.07) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  -webkit-mask-image: radial-gradient(120% 92% at 12% 0%, #000 24%, transparent 78%);
  mask-image: radial-gradient(120% 92% at 12% 0%, #000 24%, transparent 78%);
}

.page-news .notes-masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-orange) 46%, var(--c-cyan) 100%);
}

.page-news .notes-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(18px, 3vw, 30px);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-silver);
}

.page-news .notes-crumb a {
  color: var(--c-silver);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-news .notes-crumb a:hover {
  color: var(--c-orange-soft);
  border-bottom-color: currentColor;
}

.page-news .notes-crumb span[aria-hidden] {
  opacity: 0.5;
}

.page-news .notes-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
}

.page-news .notes-head h1 {
  margin: 12px 0 0;
  font-size: clamp(30px, 6.2vw, 62px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.page-news .notes-head .lede {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: rgba(247, 244, 236, 0.8);
}

.page-news .notes-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .notes-head-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(201, 209, 217, 0.22);
  border-radius: var(--radius);
  background: rgba(201, 209, 217, 0.22);
  overflow: hidden;
}

.page-news .nhs-item {
  padding: 16px 18px;
  background: rgba(11, 27, 58, 0.74);
}

.page-news .nhs-item dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(201, 209, 217, 0.88);
}

.page-news .nhs-item dd {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-paper);
}

.page-news .nhs-item .num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-orange);
}

/* ---------- 通用图片槽 ---------- */
.page-news .news-figure {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-night-2);
}

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

.page-news .news-figure--16x9 { aspect-ratio: 16 / 9; }
.page-news .news-figure--7x4 { aspect-ratio: 7 / 4; }
.page-news .news-figure--3x2 { aspect-ratio: 3 / 2; }

.page-news .news-figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--c-paper);
  background: linear-gradient(180deg, rgba(11, 27, 58, 0) 0%, rgba(11, 27, 58, 0.9) 62%);
}

/* ---------- 置顶专题 ---------- */
.page-news .notes-feature {
  padding: clamp(32px, 5vw, 64px) 0;
  background: var(--c-paper);
}

.page-news .feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 40px);
  padding: clamp(22px, 3vw, 42px);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
}

.page-news .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-orange) 100%);
}

.page-news .feature-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.page-news .feature-copy p {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--c-slate);
  max-width: 58ch;
}

.page-news .feature-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.page-news .feature-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--c-slate);
}

.page-news .feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c-orange);
  transform: rotate(45deg);
}

.page-news .feature-points .num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-green-deep);
}

.page-news .feature-copy .btn {
  margin-top: 26px;
}

/* ---------- 两栏骨架 ---------- */
.page-news .notes-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--news-gap);
  padding: clamp(32px, 5vw, 64px) 0 clamp(40px, 6vw, 80px);
}

.page-news .notes-stream {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  min-width: 0;
}

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

.page-news .notes-rail {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.page-news .rail-block {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-green);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-paper);
}

.page-news .rail-block--hot {
  border-left-color: var(--c-orange);
  background: linear-gradient(180deg, #132A55 0%, #0B1B3A 100%);
  color: var(--c-paper);
}

.page-news .rail-title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-green);
}

.page-news .rail-block--hot .rail-title {
  color: var(--c-orange-soft);
}

.page-news .rail-list {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.page-news .rail-list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-night);
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.page-news .rail-list a:hover {
  background: rgba(14, 143, 90, 0.09);
  color: var(--c-green-deep);
  transform: translateX(3px);
}

.page-news .rail-list .num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-orange);
}

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

.page-news .rail-tags li {
  padding: 5px 11px;
  border: 1px solid rgba(247, 244, 236, 0.24);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--c-paper);
  background: rgba(247, 244, 236, 0.1);
}

.page-news .rail-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--c-slate);
}

.page-news .rail-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--c-green-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ---------- 区块标题 ---------- */
.page-news .block-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-news .block-head .section-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--c-night);
}

.page-news .block-lede {
  margin: 0;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--c-slate);
}

/* ---------- 转会动态列表 ---------- */
.page-news .feed {
  display: grid;
  gap: 14px;
}

.page-news .feed-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-green);
  border-radius: var(--radius-sm);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.page-news .feed-item:hover {
  box-shadow: var(--shadow-paper);
  transform: translateY(-2px);
}

.page-news .feed-item--hot {
  border-left-color: var(--c-orange);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(240, 90, 40, 0.06) 100%);
}

.page-news .feed-item--slim {
  border-left-color: var(--c-cyan);
  background: var(--c-paper);
}

.page-news .feed-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-news .feed-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--c-slate);
}

.page-news .feed-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
  color: var(--c-night);
}

.page-news .feed-body p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--c-slate);
}

.page-news .feed-item .news-figure {
  margin-top: 14px;
  border-radius: var(--radius-sm);
}

.page-news .feed-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 12px 0 0;
  padding: 10px 0 0;
  border-top: 1px dashed var(--c-line);
  font-size: 13px;
  color: var(--c-slate);
}

.page-news .feed-meta li {
  min-width: 0;
}

.page-news .feed-meta .num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-green-deep);
}

/* ---------- 教练履历 ---------- */
.page-news .coach-block {
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid rgba(14, 143, 90, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 143, 90, 0.08) 0%, rgba(14, 143, 90, 0) 100%);
}

.page-news .coach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
}

.page-news .coach-timeline {
  position: relative;
  list-style: none;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0 0 0 26px;
}

.page-news .coach-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-green) 0%, var(--c-orange) 100%);
  transform: skewX(-6deg);
  transform-origin: top center;
}

.page-news .coach-step {
  position: relative;
}

.page-news .coach-step::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border: 3px solid var(--c-green);
  border-radius: 50%;
  background: #fff;
}

.page-news .coach-step:nth-child(3)::before,
.page-news .coach-step:nth-child(4)::before {
  border-color: var(--c-orange);
}

.page-news .coach-phase {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-green-deep);
  background: rgba(14, 143, 90, 0.12);
}

.page-news .coach-step h3 {
  margin: 10px 0 0;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.44;
  color: var(--c-night);
}

.page-news .coach-step p {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--c-slate);
}

.page-news .coach-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
}

.page-news .coach-tags li {
  padding: 3px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-night);
}

.page-news .coach-figure {
  align-self: start;
}

/* ---------- 轮次笔记 ---------- */
.page-news .round-scale {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0 0 clamp(20px, 3vw, 30px);
  padding: 14px 0 0;
  border-top: 2px solid var(--c-line);
  overflow-x: auto;
}

.page-news .round-node {
  position: relative;
  flex: 1 0 auto;
  min-width: 92px;
  display: grid;
  gap: 2px;
  padding-top: 14px;
}

.page-news .round-node::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 2px;
  height: 12px;
  background: var(--c-silver);
}

.page-news .round-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-night);
}

.page-news .round-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-slate);
}

.page-news .round-node--done .round-num { color: var(--c-green); }
.page-news .round-node--done::before { background: var(--c-green); }

.page-news .round-node--hot .round-num { color: var(--c-orange); }

.page-news .round-node--hot::before {
  top: -16px;
  height: 16px;
  background: var(--c-orange);
}

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

.page-news .round-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-news .round-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
}

.page-news .round-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 143, 90, 0.14), transparent 70%);
}

.page-news .round-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-news .round-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--c-night);
  color: var(--c-paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.page-news .round-badge .num {
  font-size: 16px;
  color: var(--c-orange-soft);
}

.page-news .round-card h3 {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.48;
  color: var(--c-night);
}

.page-news .round-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--c-slate);
}

.page-news .round-accordion {
  margin-top: clamp(18px, 3vw, 28px);
}

/* ---------- 标签索引 ---------- */
.page-news .notes-topics {
  padding: clamp(36px, 6vw, 76px) 0;
  color: var(--c-paper);
  background: linear-gradient(150deg, #0B1B3A 0%, #132A55 100%);
}

.page-news .topics-head {
  margin-bottom: clamp(22px, 3vw, 36px);
}

.page-news .topics-head .eyebrow {
  color: var(--c-orange-soft);
}

.page-news .topics-head .section-title {
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.22;
  color: var(--c-paper);
}

.page-news .topics-head p {
  margin: 10px 0 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(247, 244, 236, 0.72);
}

.page-news .topic-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-news .topic-group h3 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 209, 217, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-cyan);
}

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

.page-news .topic-chip {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid rgba(201, 209, 217, 0.28);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.08);
  font-size: 13px;
  line-height: 1.2;
  color: var(--c-paper);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}

.page-news .topic-chip:hover {
  background: rgba(240, 90, 40, 0.2);
  border-color: var(--c-orange);
  color: var(--c-orange-soft);
}

.page-news .topics-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(201, 209, 217, 0.2);
}

/* ---------- 订阅与咨询 ---------- */
.page-news .notes-cta {
  padding: clamp(36px, 6vw, 72px) 0;
  background: var(--c-paper);
}

.page-news .cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #0E8F5A 0%, #075E43 54%, #0B1B3A 132%);
  color: var(--c-paper);
  box-shadow: var(--shadow-paper);
}

.page-news .cta-copy .eyebrow {
  color: var(--c-orange-soft);
}

.page-news .cta-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.26;
}

.page-news .cta-copy p {
  margin: 12px 0 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(247, 244, 236, 0.84);
}

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

.page-news .cta-contact {
  grid-column: 1 / -1;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(247, 244, 236, 0.24);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-paper);
}

.page-news .cta-contact span {
  margin-right: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 236, 0.68);
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-news .feed-item {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .page-news .feed-aside {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

@media (min-width: 900px) {
  .page-news .notes-head {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: end;
  }

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

  .page-news .cta-panel {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-news .feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .page-news .notes-flow {
    grid-template-columns: var(--news-rail-w) minmax(0, 1fr);
    align-items: start;
  }

  .page-news .notes-rail {
    position: sticky;
    top: 104px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-news .rail-list a:hover,
  .page-news .feed-item:hover {
    transform: none;
  }
}
