.page-news {
  --news-radius: 22px;
  --news-radius-lg: 30px;
  --news-gap: clamp(16px, 2.4vw, 26px);
  background: var(--midnight);
  color: var(--ice);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding: clamp(92px, 15vw, 168px) 0 clamp(36px, 5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(880px 460px at 10% -12%, rgba(0, 229, 255, 0.16), transparent 68%),
    radial-gradient(700px 380px at 94% 2%, rgba(255, 107, 53, 0.12), transparent 72%),
    linear-gradient(180deg, var(--abyss) 0%, var(--midnight) 66%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(143, 166, 196, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 166, 196, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(760px 440px at 28% 8%, #000, transparent 78%);
  mask-image: radial-gradient(760px 440px at 28% 8%, #000, transparent 78%);
}

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

.page-news .news-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(38px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 15em;
}

.page-news .news-hero .lede {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.8;
  color: var(--ink-70);
}

.page-news .news-hero__figure {
  margin: clamp(28px, 4vw, 48px) 0 0;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 48, 90, 0.6), rgba(6, 20, 40, 0.7));
}

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

/* ---------- 内容时间线 ---------- */
.page-news .news-axis {
  padding-top: clamp(32px, 5vw, 56px);
}

.page-news .axis-track {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.page-news .axis-stop {
  scroll-snap-align: start;
  position: relative;
}

.page-news .axis-stop a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 18px 16px;
  border-top: 2px solid var(--steel);
  color: var(--ice);
  text-decoration: none;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}

.page-news .axis-stop a::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
  border: 2px solid var(--midnight);
  box-sizing: content-box;
  transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.page-news .axis-stop a:hover,
.page-news .axis-stop a:focus-visible {
  border-top-color: var(--cyan);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08), transparent 70%);
}

.page-news .axis-stop a:hover::before,
.page-news .axis-stop a:focus-visible::before {
  background: var(--cyan);
}

.page-news .axis-stop--now a {
  border-top-color: var(--cyan);
}

.page-news .axis-stop--now a::before {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.18);
}

.page-news .axis-stop__when {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

.page-news .axis-stop__what {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.005em;
}

.page-news .axis-stop__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-50);
}

/* ---------- 本期头条 ---------- */
.page-news .news-lead__body {
  padding: clamp(22px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-lead__body h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-news .news-lead__body > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
}

.page-news .news-lead__points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-lead__points li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-70);
}

.page-news .news-lead__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  border-radius: var(--pill);
  background: var(--cyan);
}

.page-news .news-lead__points strong {
  color: var(--ice);
  font-weight: 700;
}

.page-news .news-lead__hint {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.7;
  border-left: 2px solid var(--steel);
  padding-left: 12px;
}

.page-news .news-lead__body .btn {
  align-self: flex-start;
}

.page-news .news-lead__media {
  margin: 0;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 48, 90, 0.6), rgba(6, 20, 40, 0.7));
}

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

/* ---------- 条目列表 ---------- */
.page-news .news-feed__jump {
  margin-bottom: clamp(8px, 1.6vw, 16px);
}

.page-news .feed-group {
  scroll-margin-top: 120px;
  margin-top: clamp(30px, 4vw, 52px);
}

.page-news .feed-group[data-cat="org"] { --cat: var(--cyan); }
.page-news .feed-group[data-cat="archive"] { --cat: var(--whistle); }
.page-news .feed-group[data-cat="version"] { --cat: var(--judge); }
.page-news .feed-group[data-cat="venue"] { --cat: var(--signal); }

.page-news .feed-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 800;
  letter-spacing: -0.005em;
}

.page-news .feed-group__title::before {
  content: "";
  flex: none;
  width: 26px;
  height: 4px;
  border-radius: var(--pill);
  background: var(--cat, var(--cyan));
}

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

.page-news .feed-item {
  position: relative;
  padding: 18px 22px 18px 32px;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius);
  background: linear-gradient(180deg, rgba(18, 48, 90, 0.5), rgba(6, 20, 40, 0.42));
  transition: border-color 0.16s var(--ease), transform 0.16s var(--ease);
}

.page-news .feed-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: var(--pill);
  background: var(--cat, var(--cyan));
  transition: width 0.16s var(--ease);
}

.page-news .feed-item:hover,
.page-news .feed-item:focus-within {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.page-news .feed-item:hover::before,
.page-news .feed-item:focus-within::before {
  width: 6px;
}

.page-news .feed-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}

.page-news .feed-item__head h4 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ice);
}

.page-news .feed-item__time {
  flex: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

.page-news .feed-item__sum {
  margin: 8px 0 0;
  max-width: 76ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-70);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .feed-item:hover .feed-item__sum,
.page-news .feed-item:focus-within .feed-item__sum {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

/* ---------- 球迷组织近况 ---------- */
.page-news .news-org__figure {
  margin: 0;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 48, 90, 0.6), rgba(6, 20, 40, 0.7));
}

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

.page-news .news-org__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(4px, 1.4vw, 18px) 0;
}

.page-news .news-org__body h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.page-news .news-org__body > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
  max-width: 62ch;
}

.page-news .org-points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .org-points li {
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--steel);
  border-radius: 16px;
  background: rgba(18, 48, 90, 0.34);
}

.page-news .org-points strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.page-news .org-points span {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-70);
}

.page-news .news-org__foot {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mist);
}

.page-news .news-org__body .btn {
  align-self: flex-start;
}

/* ---------- 专题回溯 ---------- */
.page-news .news-archive__intro {
  margin: 14px 0 0;
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
}

.page-news .archive-panel {
  margin-top: clamp(24px, 3vw, 38px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--steel);
  border-radius: var(--news-radius-lg);
  background: linear-gradient(160deg, rgba(18, 48, 90, 0.55), rgba(6, 20, 40, 0.66));
}

.page-news .archive-scale {
  display: block;
  width: 100%;
  height: auto;
  color: var(--steel);
}

.page-news .archive-scale__rail {
  stroke: var(--steel);
  stroke-width: 1.5;
}

.page-news .archive-scale__mark {
  stroke: var(--mist);
  stroke-width: 3;
  stroke-linecap: round;
}

.page-news .archive-scale__mark--now {
  stroke: var(--cyan);
  stroke-width: 6;
}

.page-news .archive-legends {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.page-news .archive-legends li {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-50);
  padding-left: 12px;
  border-left: 2px solid var(--steel);
  line-height: 1.5;
}

.page-news .archive-legends__now {
  color: var(--cyan);
  border-left-color: var(--cyan);
}

.page-news .archive-scroll {
  margin-top: clamp(20px, 2.6vw, 32px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 1fr);
  gap: var(--news-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.page-news .archive-card {
  scroll-snap-align: start;
  padding: 22px 24px;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius);
  background: rgba(18, 48, 90, 0.36);
  transition: border-color 0.16s var(--ease);
}

.page-news .archive-card:hover {
  border-color: var(--cyan);
}

.page-news .archive-card--now {
  border-color: rgba(0, 229, 255, 0.5);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.1), rgba(18, 48, 90, 0.36));
}

.page-news .archive-card__idx {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

.page-news .archive-card h3 {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.page-news .archive-card p:not(.archive-card__idx) {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-70);
}

/* ---------- 数据版本 ---------- */
.page-news .news-version__intro {
  margin: 14px 0 0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
}

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

.page-news .version-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 22px;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid var(--steel);
  border-radius: var(--news-radius);
  background: rgba(18, 48, 90, 0.32);
  transition: border-color 0.16s var(--ease), background 0.16s var(--ease);
}

.page-news .version-item:hover {
  border-color: var(--cyan);
  background: rgba(18, 48, 90, 0.48);
}

.page-news .version-item__tag {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: var(--pill);
  padding: 3px 11px;
  white-space: nowrap;
}

.page-news .version-item__body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.page-news .version-item__body p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-70);
  max-width: 72ch;
}

.page-news .news-version__foot {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--mist);
  max-width: 68ch;
}

.page-news .news-version__foot a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

/* ---------- 订阅与投稿 ---------- */
.page-news .cta-panel {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(26px, 3.6vw, 46px);
  border: 1px solid var(--steel);
  border-radius: var(--news-radius-lg);
  background:
    radial-gradient(520px 260px at 88% 0%, rgba(255, 107, 53, 0.16), transparent 70%),
    linear-gradient(150deg, rgba(18, 48, 90, 0.7), rgba(6, 20, 40, 0.8));
}

.page-news .cta-panel__text h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.page-news .cta-panel__text p {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-70);
}

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

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .page-news .axis-track {
    grid-auto-columns: minmax(190px, 62%);
  }

  .page-news .archive-scroll {
    grid-auto-columns: minmax(240px, 76%);
  }

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

@media (max-width: 640px) {
  .page-news .news-hero {
    padding-top: clamp(84px, 22vw, 120px);
  }

  .page-news .axis-track {
    grid-auto-columns: 80%;
  }

  .page-news .axis-stop a {
    padding: 22px 14px 14px;
  }

  .page-news .feed-item {
    padding: 16px 18px 16px 28px;
  }

  .page-news .feed-item::before {
    left: 11px;
    top: 18px;
    bottom: 18px;
  }

  .page-news .feed-item__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .page-news .version-item {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 18px;
  }

  .page-news .news-lead__body,
  .page-news .archive-card {
    padding: 18px 20px;
  }

  .page-news .cta-panel__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
