.page-news {
  --ntl-glow: 0 0 22px rgba(0, 229, 255, 0.28);
}

/* 面包屑 */
.page-news .breadcrumb {
  margin-top: 22px;
  font-size: 13px;
}

.page-news .breadcrumb a {
  color: var(--muted);
}

.page-news .breadcrumb [aria-current="page"] {
  color: var(--amber);
}

/* 页头 */
.page-news .news-masthead {
  display: grid;
  gap: 30px;
  padding: clamp(24px, 5vw, 54px) 0 clamp(26px, 4vw, 44px);
  border-bottom: 1px solid var(--line-soft);
}

.page-news .news-masthead h1 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-news .news-masthead .lede {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.page-news .masthead-index {
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(0, 229, 255, 0.07), rgba(122, 92, 255, 0.05) 60%, rgba(5, 7, 14, 0));
}

.page-news .index-label {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

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

.page-news .index-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px dashed var(--line-soft);
  transition: color 0.18s var(--ease);
}

.page-news .index-item:last-child .index-link {
  border-bottom: 0;
}

.page-news .index-link:hover,
.page-news .index-link.is-active {
  color: var(--text);
}

.page-news .index-no {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--violet);
}

.page-news .index-link.is-active .index-no {
  color: var(--amber);
  text-shadow: 0 0 12px rgba(255, 176, 32, 0.6);
}

/* 指标带 */
.page-news .pulse-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(28px, 5vw, 52px);
  padding: 0;
  list-style: none;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-news .pulse-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: var(--panel);
}

.page-news .kpi-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.page-news .pulse-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-mono);
}

.page-news .pulse-value .num {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cyan);
}

.page-news .pulse-item:nth-child(2) .num {
  color: var(--magenta);
}

.page-news .pulse-item:nth-child(3) .num {
  color: var(--amber);
}

.page-news .pulse-item:nth-child(4) .num {
  color: var(--violet);
}

.page-news .kpi-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* 区块与标题 */
.page-news .news-section {
  padding: clamp(32px, 5.5vw, 62px) 0;
  border-top: 1px solid var(--line-soft);
}

.page-news .section-head {
  margin-bottom: 24px;
}

.page-news .section-title {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(23px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}

.page-news .section-lede {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-news .section-num {
  font-family: var(--font-mono);
  color: var(--amber);
}

/* 头条大卡 */
.page-news .headline-card {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 3.6vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 0% 0%, rgba(0, 229, 255, 0.10), rgba(5, 7, 14, 0) 55%),
    linear-gradient(160deg, rgba(255, 61, 174, 0.09), rgba(5, 7, 14, 0) 60%), var(--panel);
}

.page-news .headline-figure {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-news .headline-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

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

.page-news .headline-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .headline-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.page-news .hl-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text);
}

.page-news .headline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* 筛选胶囊 */
.page-news .chips,
.page-news .ver-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .chips {
  margin: 0 0 26px;
}

.page-news .ver-cloud {
  margin: 0 0 14px;
}

.page-news .filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.page-news .chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--row);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.page-news .chip:hover {
  color: var(--text);
  border-color: var(--line);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.16);
}

.page-news .chips:has(#cat-all:checked) label[for="cat-all"] {
  background: rgba(232, 241, 255, 0.08);
  border-color: var(--text);
  color: var(--text);
}

.page-news .chips:has(#cat-open:checked) label[for="cat-open"] {
  background: rgba(255, 176, 32, 0.14);
  border-color: var(--amber);
  color: var(--amber);
}

.page-news .chips:has(#cat-pkg:checked) label[for="cat-pkg"] {
  background: rgba(0, 229, 255, 0.13);
  border-color: var(--cyan);
  color: var(--cyan);
}

.page-news .chips:has(#cat-gift:checked) label[for="cat-gift"] {
  background: rgba(255, 61, 174, 0.14);
  border-color: var(--magenta);
  color: var(--magenta);
}

.page-news .chips:has(#cat-season:checked) label[for="cat-season"] {
  background: rgba(122, 92, 255, 0.16);
  border-color: var(--violet);
  color: var(--violet);
}

.page-news .chips:has(#cat-svc:checked) label[for="cat-svc"] {
  background: rgba(34, 224, 161, 0.14);
  border-color: var(--green);
  color: var(--green);
}

/* 类别筛选生效 */
.page-news:has(#cat-open:checked) .entry:not([data-cat="open"]),
.page-news:has(#cat-pkg:checked) .entry:not([data-cat="pkg"]),
.page-news:has(#cat-gift:checked) .entry:not([data-cat="gift"]),
.page-news:has(#cat-season:checked) .entry:not([data-cat="season"]),
.page-news:has(#cat-svc:checked) .entry:not([data-cat="svc"]) {
  display: none;
}

.page-news:has(#cat-open:checked) .stage:not(:has(.entry[data-cat="open"])),
.page-news:has(#cat-pkg:checked) .stage:not(:has(.entry[data-cat="pkg"])),
.page-news:has(#cat-gift:checked) .stage:not(:has(.entry[data-cat="gift"])),
.page-news:has(#cat-season:checked) .stage:not(:has(.entry[data-cat="season"])),
.page-news:has(#cat-svc:checked) .stage:not(:has(.entry[data-cat="svc"])) {
  display: none;
}

/* 版本筛选生效 */
.page-news:has(#ver-160:checked) .entry:not([data-ver~="1.6.0"]),
.page-news:has(#ver-153:checked) .entry:not([data-ver~="1.5.3"]),
.page-news:has(#ver-152:checked) .entry:not([data-ver~="1.5.2"]),
.page-news:has(#ver-150:checked) .entry:not([data-ver~="1.5.0"]),
.page-news:has(#ver-142:checked) .entry:not([data-ver~="1.4.2"]) {
  display: none;
}

/* 条目流与时间轴 */
.page-news .stream {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.page-news .stage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.page-news .stage-no {
  padding: 3px 7px;
  border: 1px solid rgba(122, 92, 255, 0.42);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--violet);
}

.page-news .stage-title {
  margin: 0;
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-news .stage-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
}

.page-news .stage-band {
  margin: 18px 0 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--row);
  overflow: hidden;
}

.page-news .stage-band img {
  display: block;
  width: 100%;
  max-height: 340px;
  aspect-ratio: 1200 / 650;
  object-fit: cover;
}

.page-news .stage-band--pkg img,
.page-news .stage-band--gift img {
  aspect-ratio: 1000 / 650;
}

.page-news .feed {
  position: relative;
  max-width: 900px;
  margin: 0;
  padding: 0 0 0 26px;
  list-style: none;
}

.page-news .feed::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.55), rgba(122, 92, 255, 0.28) 55%, rgba(147, 166, 196, 0.08));
}

.page-news .entry {
  position: relative;
  padding: 0 0 24px;
}

.page-news .entry:last-child {
  padding-bottom: 0;
}

.page-news .entry::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
  transition: background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.page-news .entry:hover::before {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.85);
}

.page-news .entry-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .entry-when {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .entry-title {
  margin: 10px 0 8px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.page-news .entry-text {
  max-width: 68ch;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.page-news .entry-go {
  display: inline-block;
  font-size: 14px;
}

/* 版本归档 */
.page-news .ver-chip {
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--row);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.page-news .ver-chip:hover {
  color: var(--text);
  border-color: rgba(122, 92, 255, 0.6);
}

.page-news .ver-cloud:has(#ver-all:checked) label[for="ver-all"] {
  background: rgba(255, 176, 32, 0.12);
  border-color: var(--amber);
  color: var(--amber);
}

.page-news .ver-cloud:has(#ver-160:checked) label[for="ver-160"],
.page-news .ver-cloud:has(#ver-153:checked) label[for="ver-153"],
.page-news .ver-cloud:has(#ver-152:checked) label[for="ver-152"],
.page-news .ver-cloud:has(#ver-150:checked) label[for="ver-150"],
.page-news .ver-cloud:has(#ver-142:checked) label[for="ver-142"] {
  background: rgba(122, 92, 255, 0.18);
  border-color: var(--violet);
  color: var(--text);
  box-shadow: 0 0 18px rgba(122, 92, 255, 0.22);
}

.page-news .ver-note {
  max-width: 68ch;
  margin: 0 0 26px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .ver-cards {
  display: grid;
  gap: 16px;
}

.page-news .ver-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(122, 92, 255, 0.10), rgba(5, 7, 14, 0) 65%), var(--panel);
}

.page-news .ver-card h3 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text);
}

.page-news .ver-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .ver-card .link {
  margin-top: auto;
  font-size: 14px;
}

/* 订阅提醒 */
.page-news .subscribe-panel {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(122, 92, 255, 0.12), rgba(0, 229, 255, 0.06) 55%, rgba(5, 7, 14, 0)), var(--panel);
}

.page-news .subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-news .sub-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sub;
}

.page-news .sub-steps li {
  position: relative;
  padding-left: 44px;
  counter-increment: sub;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .sub-steps li::before {
  content: counter(sub, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
}

.page-news .sub-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

/* 历史批次 */
.page-news .archive-table td:last-child a {
  white-space: nowrap;
}

.page-news .archive-foot {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* 响应式 */
@media (min-width: 780px) {
  .page-news .pulse-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-news .ver-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-news .subscribe-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .page-news .news-masthead {
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
    align-items: end;
  }
}

@media (min-width: 1000px) {
  .page-news .headline-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

@media (max-width: 599px) {
  .page-news .stage-meta {
    margin-left: 0;
  }

  .page-news .feed {
    padding-left: 22px;
  }

  .page-news .entry::before {
    left: -22px;
    width: 9px;
    height: 9px;
  }

  .page-news .headline-cta .btn,
  .page-news .masthead-actions .btn,
  .page-news .subscribe-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .chip,
  .page-news .ver-chip,
  .page-news .entry::before,
  .page-news .index-link {
    transition: none;
  }
}
