.page-news {
  --news-gap: 48px;
  --news-gap-lg: 72px;
  --news-line: rgba(167, 43, 250, 0.28);
  --news-blue: #00E5FF;
  --news-pink: #FF2A6D;
  --news-purple: #A72BFA;
  --news-surface: #121020;
  --news-surface-raised: #171432;
  overflow-x: clip;
}

.page-news .container {
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-news .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 13px;
  color: var(--c-muted, #9A8FBF);
}

.page-news .breadcrumb a {
  color: var(--c-muted, #9A8FBF);
  text-decoration: none;
  transition: color 0.3s;
}

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  color: var(--news-blue, #00E5FF);
  outline: 2px solid var(--news-blue, #00E5FF);
  outline-offset: 4px;
}

.page-news .breadcrumb li[aria-current="page"] {
  color: var(--c-text, #F0E6FF);
}

/* ── Hero 区 ─────────────────────── */
.page-news .news-hero {
  padding-block: 24px 40px;
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .news-hero__left {
  position: relative;
}

.page-news .news-hero .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--news-purple, #A72BFA);
  border: 1px solid var(--news-line);
  padding: 6px 12px;
  margin-bottom: 20px;
}

.page-news .news-hero .display-title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--c-text, #F0E6FF);
  margin: 0 0 20px;
  text-shadow: 0 0 28px rgba(167, 43, 250, 0.45);
  transform: skewX(-3deg);
  max-width: 820px;
}

.page-news .news-hero__lede {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted, #9A8FBF);
  max-width: 640px;
  margin: 0 0 28px;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--c-text, #F0E6FF);
  border-top: 1px solid var(--news-line);
  border-bottom: 1px solid var(--news-line);
  padding-block: 14px;
}

.page-news .news-hero__frame {
  position: relative;
  padding: 12px;
}

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

.page-news .news-hero__frame-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(9, 6, 15, 0.85);
  border: 1px solid var(--news-pink, #FF2A6D);
  color: #F0E6FF;
  font-size: 12px;
  padding: 8px 14px;
}

/* ── 最新专题 ─────────────────────── */
.page-news .news-featured {
  padding-block: 8px 56px;
}

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

.page-news .section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--news-blue, #00E5FF);
  margin-bottom: 10px;
}

.page-news .section-title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--c-text, #F0E6FF);
  margin: 0;
  text-transform: uppercase;
}

.page-news .section-sub {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--c-muted, #9A8FBF);
  margin-top: 8px;
  max-width: 560px;
}

.page-news .news-featured__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(167, 43, 250, 0.12) 0%, rgba(0, 229, 255, 0.06) 100%);
  border: 1px solid rgba(167, 43, 250, 0.22);
  padding: 28px;
  position: relative;
}

.page-news .news-featured__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(45deg, transparent 70%, rgba(255, 42, 109, 0.15) 100%);
}

.page-news .news-featured__number {
  font-size: 56px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(167, 43, 250, 0.8);
  line-height: 1;
}

.page-news .news-featured__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .tag {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--news-pink, #FF2A6D);
  border: 1px solid rgba(255, 42, 109, 0.4);
  background: rgba(255, 42, 109, 0.06);
  padding: 5px 12px;
  text-transform: uppercase;
}

.page-news .news-featured__title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--c-text, #F0E6FF);
  margin: 0;
}

.page-news .news-featured__summary {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted, #9A8FBF);
  margin: 0;
}

.page-news .news-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: rgba(240, 230, 255, 0.7);
  border-top: 1px solid rgba(167, 43, 250, 0.2);
  padding-top: 14px;
}

.page-news .news-featured__aside img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

/* ── 文章列表 + 侧栏 ───────────────── */
.page-news .news-list-section {
  padding-block: 40px 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(167, 43, 250, 0.06) 100%);
}

.page-news .news-list-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-news .news-index {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-index__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  background: var(--news-surface, #121020);
  border: 1px solid rgba(167, 43, 250, 0.14);
  padding: 22px 20px;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}

.page-news .news-index__item:hover,
.page-news .news-index__item:focus-within {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(18, 16, 32, 0.9);
}

.page-news .news-index__num {
  font-size: 32px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 229, 255, 0.6);
  line-height: 1;
  padding-top: 4px;
}

.page-news .news-index__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .news-index__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .news-index__title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text, #F0E6FF);
  margin: 0;
  line-height: 1.4;
}

.page-news .news-index__summary {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted, #9A8FBF);
  margin: 0;
}

.page-news .news-index__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 12px;
  color: rgba(240, 230, 255, 0.5);
}

.page-news .news-is-hidden {
  display: none;
}

/* 侧栏 */
.page-news .news-list-section__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .news-aside__block {
  background: var(--news-surface, #121020);
  border-left: 3px solid var(--news-purple, #A72BFA);
  padding: 22px;
}

.page-news .news-aside__block--subscribe {
  border-left-color: var(--news-pink, #FF2A6D);
  background: linear-gradient(160deg, rgba(255, 42, 109, 0.08) 0%, var(--news-surface, #121020) 70%);
}

.page-news .news-aside__block .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--news-blue, #00E5FF);
  margin-bottom: 8px;
}

.page-news .news-aside__title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: 17px;
  font-weight: 900;
  color: var(--c-text, #F0E6FF);
  margin: 0 0 14px;
}

.page-news .news-aside__archive {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-aside__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--c-muted, #9A8FBF);
  text-decoration: none;
  border: 1px solid transparent;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.page-news .news-aside__link:hover,
.page-news .news-aside__link:focus-visible {
  color: var(--c-text, #F0E6FF);
  border-color: rgba(167, 43, 250, 0.35);
  background: rgba(167, 43, 250, 0.06);
  outline: none;
}

.page-news .news-aside__link .mono {
  font-size: 12px;
  color: rgba(240, 230, 255, 0.5);
}

.page-news .news-aside__link:hover .mono,
.page-news .news-aside__link:focus-visible .mono {
  color: var(--news-blue, #00E5FF);
}

.page-news .news-aside__desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted, #9A8FBF);
  margin: 0 0 16px;
}

.page-news .news-aside__benefits {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .news-aside__benefits li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--c-text, #F0E6FF);
}

.page-news .news-aside__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--news-pink, #FF2A6D);
  box-shadow: 0 0 10px rgba(255, 42, 109, 0.6);
}

.page-news .news-aside__note {
  font-size: 12px;
  color: rgba(240, 230, 255, 0.45);
  margin: 14px 0 0;
}

.page-news .month-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .month-chip {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--news-blue, #00E5FF);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  background: rgba(0, 229, 255, 0.05);
}

/* ── 用户数据 ─────────────────────── */
.page-news .news-report {
  padding-block: 40px 56px;
}

.page-news .news-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .news-report__intro .section-title {
  margin-bottom: 16px;
}

.page-news .news-report__desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted, #9A8FBF);
  margin: 0 0 28px;
  max-width: 600px;
}

.page-news .news-report__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.page-news .news-report__stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--news-blue, #00E5FF);
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
  margin-bottom: 4px;
}

.page-news .news-report__stat-label {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--c-muted, #9A8FBF);
}

.page-news .news-report__visual {
  position: relative;
}

.page-news .news-report__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(167, 43, 250, 0.2);
}

.page-news .news-report__visual-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(9, 6, 15, 0.82);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: rgba(240, 230, 255, 0.8);
  font-size: 12px;
  padding: 8px 14px;
}

/* ── 归档区 ─────────────────────── */
.page-news .news-archive {
  padding-block: 40px 56px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.03) 0%, transparent 100%);
}

.page-news .news-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.page-news .news-archive__col {
  background: var(--news-surface, #121020);
  border: 1px solid rgba(167, 43, 250, 0.16);
  padding: 24px;
}

.page-news .news-archive__year {
  font-size: 18px;
  font-weight: 700;
  color: var(--news-purple, #A72BFA);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}

.page-news .news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-archive__link {
  display: block;
  padding: 8px 10px;
  color: var(--c-muted, #9A8FBF);
  text-decoration: none;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.45;
  border-left: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.page-news .news-archive__link:hover,
.page-news .news-archive__link:focus-visible {
  color: var(--c-text, #F0E6FF);
  border-left-color: var(--news-blue, #00E5FF);
  background: rgba(0, 229, 255, 0.04);
  outline: none;
}

.page-news .news-archive__foot {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(167, 43, 250, 0.16);
}

.page-news .news-archive__foot-note {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.page-news .news-archive__foot-note img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 42, 109, 0.2);
}

.page-news .news-archive__foot-note p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  color: var(--c-muted, #9A8FBF);
  margin: 0;
  max-width: 420px;
}

/* ── 订阅区 ─────────────────────── */
.page-news .news-subscribe {
  padding-block: 24px 56px;
}

.page-news .news-subscribe__banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(167, 43, 250, 0.14) 0%, rgba(0, 229, 255, 0.08) 60%, rgba(255, 42, 109, 0.06) 100%);
  position: relative;
  overflow: hidden;
}

.page-news .news-subscribe__banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 42, 109, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-subscribe__banner .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--news-pink, #FF2A6D);
  margin-bottom: 10px;
}

.page-news .news-subscribe__title {
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--c-text, #F0E6FF);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.page-news .news-subscribe__desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted, #9A8FBF);
  margin: 0 0 24px;
  max-width: 620px;
}

.page-news .news-subscribe__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .news-subscribe__point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  color: var(--c-text, #F0E6FF);
}

.page-news .news-subscribe__point .mono {
  color: var(--news-blue, #00E5FF);
  font-size: 14px;
}

.page-news .news-subscribe__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid rgba(255, 42, 109, 0.5);
  padding-left: 18px;
}

.page-news .news-subscribe__aside p {
  font-size: 13px;
  color: rgba(240, 230, 255, 0.6);
  margin: 0;
}

/* ── 按钮 ─────────────────────── */
.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-headline, "Orbitron", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.page-news .btn--neon {
  background: var(--gradient-primary, linear-gradient(135deg, #A72BFA, #00E5FF));
  color: #09060F;
  font-weight: 900;
}

.page-news .btn--neon:hover,
.page-news .btn--neon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.45), 0 0 60px rgba(167, 43, 250, 0.25);
  outline: none;
}

.page-news .btn--ghost {
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--news-blue, #00E5FF);
  background: transparent;
}

.page-news .btn--ghost:hover,
.page-news .btn--ghost:focus-visible {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.5);
  outline: none;
}

/* ── is-filter-hidden ───────────── */
.page-news .is-filter-hidden {
  display: none !important;
}

/* ── 响应式 ─────────────────────── */
@media (min-width: 768px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .page-news .news-list-section__layout {
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
  }

  .page-news .news-report__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-news .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-archive__foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-news .news-subscribe__banner {
    grid-template-columns: 1fr 300px;
    align-items: center;
  }

  .page-news .news-subscribe__points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .page-news .news-featured__card {
    grid-template-columns: 100px 1fr 300px;
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .page-news .news-hero {
    padding-block: 48px 72px;
  }

  .page-news .news-featured {
    padding-block: 16px 80px;
  }

  .page-news .news-list-section {
    padding-block: 56px 80px;
  }

  .page-news .news-list-section__layout {
    grid-template-columns: 1fr 380px;
  }

  .page-news .news-archive__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-news .news-report__stats {
    gap: 20px;
  }

  .page-news .news-report__stat-num {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition: none !important;
    animation: none !important;
  }
}
