.page-news {
  --news-rule-light: rgba(248, 240, 227, 0.22);
  --news-rule-dark: rgba(10, 30, 63, 0.10);
  --news-card-bg: #FFFDF7;
  background: var(--paper);
  overflow-x: hidden;
}

/* ---------- 首屏封面 ---------- */
.page-news .news-hero {
  position: relative;
  padding: 32px 0 0;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 84% 16%, rgba(58, 107, 160, 0.55), transparent 56%),
    radial-gradient(ellipse at 10% 90%, rgba(200, 134, 10, 0.28), transparent 46%),
    var(--navy-deep);
}

.page-news .news-hero::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--grad-gold);
}

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

.page-news .news-hero .breadcrumb-item {
  color: rgba(248, 240, 227, 0.66);
  text-decoration: none;
  transition: color 0.3s;
}

.page-news .news-hero .breadcrumb-item:hover {
  color: var(--gold);
}

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

.page-news .news-hero__grid {
  display: grid;
  gap: 32px;
  align-items: end;
}

.page-news .news-hero__text {
  min-width: 0;
}

.page-news .news-hero__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(44px, 9vw, 72px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.page-news .news-hero__desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(248, 240, 227, 0.82);
  max-width: 32em;
  margin: 0;
}

.page-news .news-hero__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-lite);
  border-left: 3px solid var(--gold-deep);
  padding-left: 12px;
  margin: 20px 0 0;
}

.page-news .news-hero__figure {
  margin: 0;
}

.page-news .news-hero__img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(3, 8, 20, 0.5);
  transform: rotate(-0.4deg);
}

.page-news .news-hero__img img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news .news-hero__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248, 240, 227, 0.52);
  letter-spacing: 0.08em;
  margin-top: 10px;
  text-align: right;
}

.page-news .news-hero__stats {
  list-style: none;
  margin: 36px 0 0;
  padding: 20px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
  border-top: 1px solid var(--news-rule-light);
}

.page-news .news-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-hero__stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--gold);
}

.page-news .news-hero__stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(248, 240, 227, 0.68);
}

/* ---------- 重点推荐 ---------- */
.page-news .news-featured {
  padding: 56px 0 20px;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(245, 209, 102, 0.35), transparent 46%),
    var(--paper);
}

.page-news .news-featured__head,
.page-news .news-listing__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--gold-deep);
}

.page-news .news-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 6px;
}

.page-news .news-kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--grad-gold);
}

.page-news .news-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.16;
  color: var(--navy);
  margin: 0;
}

.page-news .news-featured__card {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 32px 26px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(120deg, rgba(10, 30, 63, 0.97) 52%, rgba(18, 48, 95, 0.94)),
    var(--navy);
  box-shadow: 0 18px 44px rgba(10, 30, 63, 0.24);
  color: var(--paper);
}

.page-news .news-featured__card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 209, 102, 0.28), transparent 66%);
  pointer-events: none;
}

.page-news .news-featured__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

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

.page-news .news-featured__tags .tag {
  border: 1px solid rgba(245, 209, 102, 0.55);
  background: rgba(245, 209, 102, 0.16);
  color: var(--gold);
}

.page-news .news-featured__tags .tag-red {
  border-color: rgba(215, 38, 61, 0.55);
  background: rgba(215, 38, 61, 0.18);
  color: #F2A0AB;
}

.page-news .news-featured__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.34;
  color: var(--paper);
  margin: 0 0 14px;
}

.page-news .news-featured__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(248, 240, 227, 0.78);
  max-width: 44em;
  margin: 0 0 14px;
}

.page-news .news-featured__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-lite);
  margin: 0 0 22px;
}

.page-news .news-featured__deco {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(248, 240, 227, 0.16);
  padding-left: 32px;
  text-align: center;
}

.page-news .news-featured__issue {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold);
}

.page-news .news-featured__rev {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(248, 240, 227, 0.5);
  margin-top: 6px;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .page-news .news-featured__issue {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* ---------- 期刊正文 ---------- */
.page-news .news-journal {
  padding: 52px 0 72px;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 0% 100%, rgba(58, 107, 160, 0.12), transparent 52%),
    radial-gradient(circle at 1px 1px, rgba(10, 30, 63, 0.05) 1px, transparent 0);
  background-size: auto, 26px 26px;
  background-position: 0 0, 0 0;
}

.page-news .news-journal__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.page-news .news-journal__aside {
  display: grid;
  gap: 22px;
}

/* 分类筛选 */
.page-news .news-cats {
  background: var(--news-card-bg);
  border: 1px solid var(--silver);
  border-left: 4px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.page-news .news-cats__kicker {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 4px;
}

.page-news .news-cats__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 18px;
}

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

.page-news .news-cats__tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--paper);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s, border-color 0.3s;
}

.page-news .news-cats__tag:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(10, 30, 63, 0.10);
  background: var(--gold-lite);
}

.page-news .news-cats__tag.is-current {
  background: var(--grad-gold);
  border-color: transparent;
  font-weight: 800;
}

.page-news .news-cats__count {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(10, 30, 63, 0.10);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.page-news .news-cats__tag.is-current .news-cats__count {
  background: rgba(255, 255, 255, 0.35);
}

/* 编辑部档案 */
.page-news .news-editorial {
  position: relative;
  background: var(--gold-lite);
  border-radius: var(--radius-sm);
  padding: 22px;
  overflow: hidden;
}

.page-news .news-editorial::before {
  content: "”";
  position: absolute;
  top: -30px;
  right: 6px;
  font-family: var(--font-head);
  font-size: 128px;
  line-height: 1;
  color: rgba(200, 134, 10, 0.22);
  pointer-events: none;
}

.page-news .news-editorial__label {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px;
}

.page-news .news-editorial__text {
  position: relative;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
}

/* 延伸阅读 */
.page-news .news-extra__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 4px;
}

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

.page-news .news-extra__list li {
  border-bottom: 1px solid var(--news-rule-dark);
}

.page-news .news-extra__list a {
  display: block;
  padding: 11px 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}

.page-news .news-extra__list a:hover {
  color: var(--gold-deep);
  padding-left: 6px;
}

/* 最新动态 */
.page-news .news-listing__note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.page-news .news-listing__grid {
  display: grid;
  gap: 28px;
}

.page-news .news-article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--news-card-bg);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.page-news .news-article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.page-news .news-article__media {
  display: block;
  border-radius: 0;
  flex-shrink: 0;
}

.page-news .news-article__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .news-article__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 20px 22px 22px;
}

.page-news .news-article__tags {
  margin: 0;
}

.page-news .news-article__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.42;
  color: var(--navy);
  margin: 0;
}

.page-news .news-article__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 2px), var(--gold-deep) 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.4s var(--ease-out), color 0.3s;
}

.page-news .news-article__title a:hover,
.page-news .news-article__title a:focus-visible {
  color: var(--gold-deep);
  background-size: 100% 100%;
  outline: none;
}

.page-news .news-article__summary {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.page-news .news-article__meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--silver);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.page-news .news-article--plain {
  border-top: 4px solid var(--gold-deep);
}

.page-news .news-article--plain .news-article__body {
  padding-top: 24px;
}

.page-news .news-listing__foot {
  margin: 44px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--news-rule-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- 底部服务导航 ---------- */
.page-news .news-cta {
  border-top: 4px solid var(--gold-deep);
  padding: 56px 0 64px;
  text-align: center;
}

.page-news .news-cta__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  color: var(--paper);
  margin: 0 0 12px;
}

.page-news .news-cta__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(248, 240, 227, 0.78);
  max-width: 34em;
  margin: 0 auto 28px;
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
  }

  .page-news .news-heading {
    font-size: 36px;
  }

  .page-news .news-featured__title {
    font-size: 30px;
  }

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

@media (min-width: 820px) {
  .page-news .news-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .page-news .news-article:nth-child(even) {
    margin-top: 28px;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding-top: 48px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }

  .page-news .news-featured {
    padding: 72px 0 40px;
  }

  .page-news .news-featured__card {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    padding: 44px 52px;
  }

  .page-news .news-featured__deco {
    display: flex;
  }

  .page-news .news-journal {
    padding: 64px 0 88px;
  }

  .page-news .news-journal__grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 56px;
  }
}
