.page-news {
  --news-gap: clamp(18px, 3.2vw, 40px);
  --news-radius: 24px;
  --news-radius-sm: 14px;
  display: block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 84px) 0 clamp(30px, 5vw, 66px);
  border-radius: 0 0 var(--news-radius) var(--news-radius);
  background:
    radial-gradient(88% 118% at 92% -12%, rgba(122, 12, 30, 0.9) 0%, rgba(74, 7, 18, 0.34) 46%, transparent 72%),
    linear-gradient(168deg, #1A171F 0%, #0B0A0D 72%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -24%;
  width: 52%;
  height: 58%;
  transform: rotate(-9deg);
  border-radius: 46% 54% 38% 62% / 58% 42% 58% 42%;
  background: linear-gradient(136deg, rgba(122, 12, 30, 0.62), transparent 72%);
  pointer-events: none;
}

.page-news .news-hero__glow {
  position: absolute;
  right: -14%;
  top: -22%;
  width: min(640px, 74vw);
  height: min(640px, 74vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 62%);
  filter: blur(4px);
  pointer-events: none;
}

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

.page-news .news-hero__title {
  margin: 0.32em 0 0.5em;
  max-width: 24ch;
  font-family: var(--font-head);
  font-size: clamp(2rem, 6.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}

.page-news .news-hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-hi) 0%, var(--gold) 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-news .news-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.8;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.page-news .news-hero__stat-num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-hi);
}

.page-news .news-hero__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ---------- 通用章节 ---------- */
.page-news .news-section {
  padding: clamp(42px, 6.4vw, 88px) 0;
}

.page-news .news-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(22px, 3.6vw, 44px);
  padding-bottom: clamp(14px, 2vw, 22px);
  border-bottom: 1px solid var(--line);
}

.page-news .news-head__title {
  margin: 0.18em 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
}

.page-news .news-head .side-note {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 880px) {
  .page-news .news-head {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
    align-items: end;
    gap: 32px;
  }
}

/* ---------- 标签 ---------- */
.page-news .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.page-news .news-tag--ghost {
  border-color: var(--line-soft);
  background: rgba(255, 247, 230, 0.04);
  color: var(--text-dim);
}

.page-news .news-tag--neon {
  border-color: rgba(45, 212, 255, 0.4);
  background: rgba(45, 212, 255, 0.1);
  color: var(--neon);
}

/* ---------- 编辑精选 ---------- */
.page-news .feature-grid {
  display: grid;
  gap: var(--news-gap);
}

@media (min-width: 1020px) {
  .page-news .feature-grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    align-items: start;
  }
}

.page-news .feature-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--news-radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26, 23, 31, 0.92), rgba(11, 10, 13, 0.96));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.page-news .feature-main:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.page-news .feature-main__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--red-deep);
}

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

.page-news .feature-main__body {
  padding: clamp(20px, 3vw, 34px);
}

.page-news .feature-main__title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--cream);
}

.page-news .feature-main__excerpt {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-news .feature-side {
  display: grid;
  gap: var(--news-gap);
}

.page-news .feature-sub {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: var(--news-radius);
  border: 1px solid var(--line-soft);
  background: var(--panel);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.page-news .feature-sub:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 255, 0.42);
}

@media (min-width: 560px) {
  .page-news .feature-sub {
    grid-template-columns: minmax(120px, 34%) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
  }
}

.page-news .feature-sub__media {
  aspect-ratio: 10 / 7;
  overflow: hidden;
  border-radius: var(--news-radius-sm);
  background: var(--red-deep);
}

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

.page-news .feature-sub__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: clamp(1.02rem, 2.1vw, 1.24rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--cream);
}

.page-news .feature-sub__excerpt {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.72;
}

/* ---------- 可展开摘要 ---------- */
.page-news .news-more {
  margin-top: 14px;
  border-top: 1px dashed var(--line-soft);
  padding-top: 12px;
}

.page-news .news-more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color 0.3s var(--ease);
}

.page-news .news-more summary::-webkit-details-marker {
  display: none;
}

.page-news .news-more summary::after {
  content: "+";
  font-family: var(--font-num);
  font-size: 1rem;
  line-height: 1;
}

.page-news .news-more[open] summary::after {
  content: "–";
}

.page-news .news-more summary:hover {
  color: var(--neon);
}

.page-news .news-more__body {
  padding-top: 10px;
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.8;
}

.page-news .news-more__body p {
  margin: 0 0 10px;
}

.page-news .news-more__body p:last-child {
  margin-bottom: 0;
}

.page-news .news-more__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .news-more__body a:hover {
  color: var(--neon);
}

/* ---------- 时间线 ---------- */
.page-news .feed-layout {
  display: grid;
  gap: var(--news-gap);
}

@media (min-width: 980px) {
  .page-news .feed-layout {
    grid-template-columns: minmax(0, 216px) minmax(0, 1fr);
    align-items: start;
  }
}

.page-news .feed-rail {
  align-self: start;
  padding: 18px;
  border-radius: var(--news-radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(122, 12, 30, 0.24), rgba(26, 23, 31, 0.6));
}

@media (min-width: 980px) {
  .page-news .feed-rail {
    position: sticky;
    top: 104px;
  }
}

.page-news .feed-rail__title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

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

@media (min-width: 980px) {
  .page-news .feed-rail__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
  }
}

.page-news .feed-rail__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 120px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  background: rgba(255, 247, 230, 0.03);
  color: var(--text-soft);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

@media (min-width: 980px) {
  .page-news .feed-rail__item {
    border-radius: var(--r-sm);
    justify-content: space-between;
  }
}

.page-news .feed-rail__item b {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  font-weight: 700;
}

.page-news .feed-rail__item:hover {
  border-color: rgba(45, 212, 255, 0.45);
  background: rgba(45, 212, 255, 0.08);
  color: var(--cream);
}

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

.page-news .feed-main__banner {
  overflow: hidden;
  margin-bottom: clamp(20px, 3vw, 32px);
  border-radius: var(--news-radius);
  border: 1px solid var(--line-soft);
}

.page-news .feed-main__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

.page-news .timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 34px;
  list-style: none;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, 0.06));
}

.page-news .timeline-item {
  position: relative;
  padding-bottom: 26px;
}

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

.page-news .timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-news .timeline-item:hover::before {
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 0 5px rgba(45, 212, 255, 0.14);
}

.page-news .timeline-item__when {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.page-news .timeline-item__tag {
  margin-bottom: 8px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.page-news .timeline-item:hover .timeline-item__tag {
  color: var(--neon);
  border-color: rgba(45, 212, 255, 0.5);
  background: rgba(45, 212, 255, 0.1);
}

.page-news .timeline-item__title {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.32;
  color: var(--cream);
}

.page-news .timeline-item__note {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ---------- 专题系列 ---------- */
.page-news .series-grid {
  display: grid;
  gap: var(--news-gap);
}

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

.page-news .series-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--news-radius);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(165deg, rgba(74, 7, 18, 0.4) 0%, rgba(26, 23, 31, 0.9) 58%);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.page-news .series-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
}

.page-news .series-card__index {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.55);
}

.page-news .series-card__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--cream);
}

.page-news .series-card__desc {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.page-news .series-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.page-news .series-card__list li {
  padding: 11px 0 11px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.6;
  position: relative;
}

.page-news .series-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.page-news .series-card__list li:last-child {
  border-bottom: none;
}

/* ---------- 订阅与联系 ---------- */
.page-news .news-cta__inner {
  display: grid;
  gap: 26px;
  padding: clamp(26px, 4.4vw, 56px);
  border-radius: var(--news-radius);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(118% 142% at 100% 0%, rgba(212, 175, 55, 0.18), transparent 62%),
    linear-gradient(142deg, var(--red) 0%, var(--red-deep) 82%);
}

@media (min-width: 900px) {
  .page-news .news-cta__inner {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
  }
}

.page-news .news-cta__title {
  margin: 0.24em 0 0.5em;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

.page-news .news-cta__lead {
  margin: 0 0 14px;
  color: rgba(255, 247, 230, 0.82);
  font-size: 0.95rem;
  line-height: 1.82;
}

.page-news .news-cta__note {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  color: rgba(255, 247, 230, 0.6);
  font-size: 0.82rem;
  line-height: 1.7;
}

.page-news .news-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.page-news .news-cta__link {
  align-self: flex-start;
  color: rgba(255, 247, 230, 0.78);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news .news-cta__link:hover {
  color: var(--neon);
}

@media (prefers-reduced-motion: reduce) {
  .page-news .feature-main,
  .page-news .feature-sub,
  .page-news .series-card {
    transition: none;
  }

  .page-news .feature-main:hover,
  .page-news .feature-sub:hover,
  .page-news .series-card:hover {
    transform: none;
  }
}
