.page-news {
  --news-red: var(--color-red);
  --news-gold: var(--color-gold);
  --news-dark: var(--color-dark);
  --news-cream: var(--color-cream);
  --news-navy: var(--color-navy);
  --news-cyan: var(--color-cyan);
  --news-sand: var(--color-sand);
  --news-purple: var(--color-purple);
  --news-radius: 18px;
  font-family: var(--font-body);
  color: var(--color-dark);
  background:
    radial-gradient(circle at 92% 12%, rgba(212, 175, 55, 0.08), transparent 260px),
    var(--color-cream);
  min-height: 60vh;
}

.page-news .breadcrumb {
  margin: 0;
  padding: 18px 0 4px;
}

.page-news .breadcrumb a {
  color: var(--color-dark);
  opacity: 0.72;
  text-decoration: none;
}

.page-news .breadcrumb a:hover {
  color: var(--color-red);
  opacity: 1;
}

.page-news .breadcrumb li:last-child {
  font-weight: 600;
  color: var(--color-dark);
}

/* 编辑部公告栏：顶部拱门 */
.page-news .bulletin-arch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 22%, rgba(212, 175, 55, 0.22), transparent 42%),
    radial-gradient(ellipse at 12% 88%, rgba(0, 224, 198, 0.08), transparent 40%),
    var(--color-navy);
  padding: 56px 20px 68px;
  color: var(--color-cream);
}

.page-news .bulletin-arch::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 300px;
  border-radius: 50% 50% 0 0;
  background: var(--color-cream);
  opacity: 0.05;
}

.page-news .arch-glow {
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  right: 6%;
  top: 30%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(212, 175, 55, 0.08);
}

.page-news .arch-content {
  max-width: 880px;
}

.page-news .arch-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--news-gold);
  color: var(--news-gold);
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

.page-news .arch-content h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1.26;
  color: #fff;
  letter-spacing: 0.01em;
}

.page-news .arch-content h1 em {
  font-style: normal;
  color: var(--news-gold);
  text-shadow: 4px 4px 0 rgba(212, 175, 55, 0.18);
}

.page-news .arch-lead {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 243, 235, 0.86);
}

.page-news .arch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .arch-brand-note {
  position: absolute;
  right: 12px;
  top: 26px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.32em;
  color: rgba(212, 175, 55, 0.55);
}

/* 新闻布局：主栏 + 侧栏 */
.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-top: 40px;
}

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.12);
}

.page-news .section-head .section-index {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--news-gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-dark);
}

.page-news .section-head .head-wrap h2 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-dark);
}

.page-news .section-head .head-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(42, 42, 42, 0.58);
}

.page-news .badge {
  font-size: 12px;
}

/* 精选文章 */
.page-news .featured-article {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-sand);
  border-radius: var(--news-radius);
  box-shadow: 0 2px 10px rgba(42, 42, 42, 0.05);
  transition: box-shadow 0.25s ease;
}

.page-news .featured-article:hover {
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.12);
}

.page-news .featured-media {
  overflow: hidden;
}

.page-news .featured-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.page-news .featured-article:hover .featured-media img {
  transform: scale(1.03);
}

.page-news .featured-body {
  padding: 20px;
}

.page-news .featured-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.page-news .news-time {
  margin-left: auto;
  font-size: 12px;
  color: rgba(42, 42, 42, 0.55);
}

.page-news .featured-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.4;
  color: var(--color-dark);
}

.page-news .featured-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .featured-body h3 a:hover {
  color: var(--news-red);
}

.page-news .featured-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.74);
}

.page-news .card-link {
  display: inline-block;
  font-size: 14px;
  color: var(--news-red);
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-news .card-link:hover {
  color: var(--news-dark);
  border-color: var(--news-gold);
}

/* 最新列表 */
.page-news .news-list {
  border-top: 1px dashed rgba(42, 42, 42, 0.18);
}

.page-news .news-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.page-news .news-item:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), transparent 70%);
  padding-left: 6px;
}

.page-news .news-index {
  flex: 0 0 32px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--news-gold);
}

.page-news .news-content h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.page-news .news-content h3 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .news-content h3 a:hover {
  color: var(--news-red);
}

.page-news .news-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(42, 42, 42, 0.65);
}

.page-news .news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-news .news-meta .news-time {
  margin-left: 0;
}

/* 侧栏 */
.page-news .news-side {
  min-width: 0;
}

.page-news .side-widget {
  position: relative;
  margin-bottom: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(42, 42, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(42, 42, 42, 0.04);
}

.page-news .side-widget h3 {
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--news-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
}

.page-news .side-widget--arch {
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.12), transparent 120px),
    #fff;
}

.page-news .side-widget-icon {
  position: absolute;
  right: 18px;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--news-red), #a5231d);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(208, 52, 43, 0.3);
}

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

.page-news .side-catalog li {
  border-bottom: 1px dashed rgba(42, 42, 42, 0.1);
}

.page-news .side-catalog li:last-child {
  border-bottom: none;
}

.page-news .side-catalog a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .side-catalog a span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--news-gold);
}

.page-news .side-catalog a:hover {
  color: var(--news-red);
  padding-left: 5px;
}

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

.page-news .tag-cloud a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(155, 93, 229, 0.18);
  border-radius: 999px;
  background: rgba(155, 93, 229, 0.08);
  color: #8a3fc0;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-news .tag-cloud a:hover {
  background: rgba(155, 93, 229, 0.16);
  border-color: rgba(155, 93, 229, 0.35);
}

.page-news .side-widget--dark {
  background: linear-gradient(145deg, var(--color-navy), #16263d);
  color: var(--color-cream);
}

.page-news .side-widget--dark h3 {
  border-left-color: var(--news-gold);
  color: #fff;
}

.page-news .side-widget--dark .side-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .side-widget--dark .side-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news .side-widget--dark .side-links li:last-child {
  border-bottom: none;
}

.page-news .side-widget--dark .side-links a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(247, 243, 235, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .side-widget--dark .side-links a:hover {
  color: var(--news-gold);
  padding-left: 4px;
}

/* 栏目分类 */
.page-news .category-index {
  padding-top: 56px;
}

.page-news .category-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-news .category-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  padding: 22px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-sand);
  color: var(--color-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .category-entry::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--news-gold), rgba(212, 175, 55, 0.15));
}

.page-news .category-entry::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 28px;
  border: 3px solid rgba(212, 175, 55, 0.55);
  border-bottom: none;
  border-radius: 60px 60px 0 0;
  background: transparent;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.page-news .category-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(42, 42, 42, 0.13);
}

.page-news .category-entry:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

.page-news .category-entry--dark {
  background: var(--color-dark);
  color: #fff;
}

.page-news .category-entry--red {
  background: linear-gradient(135deg, var(--news-red), #a5231d);
  color: #fff;
}

.page-news .category-entry--red::after {
  background: linear-gradient(90deg, var(--news-gold), rgba(255, 255, 255, 0.25));
}

.page-news .category-num {
  position: absolute;
  right: 16px;
  top: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: rgba(42, 42, 42, 0.14);
}

.page-news .category-entry--dark .category-num,
.page-news .category-entry--red .category-num {
  color: rgba(255, 255, 255, 0.16);
}

.page-news .category-entry h3 {
  position: relative;
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
}

.page-news .category-entry p {
  position: relative;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.72);
}

.page-news .category-entry--dark p,
.page-news .category-entry--red p {
  color: rgba(255, 255, 255, 0.82);
}

.page-news .category-count {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--news-red);
}

.page-news .category-entry--dark .category-count,
.page-news .category-entry--red .category-count {
  color: var(--news-gold);
}

.page-news .category-entry .card-link {
  position: relative;
  font-size: 13px;
}

.page-news .category-entry--dark .card-link,
.page-news .category-entry--red .card-link {
  color: var(--news-gold);
}

.page-news .category-icon-figure {
  max-width: 300px;
  margin: 32px auto 0;
  text-align: center;
}

.page-news .category-icon-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(42, 42, 42, 0.08);
}

.page-news .category-icon-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(42, 42, 42, 0.6);
}

/* 专题系列 */
.page-news .series-section {
  margin-top: 56px;
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.16), transparent 280px),
    var(--color-dark);
}

.page-news .section-head--light h2 {
  color: #fff;
}

.page-news .section-head--light .head-note {
  color: rgba(247, 243, 235, 0.6);
}

.page-news .section-head--light {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-news .section-head--light .section-index {
  border-color: var(--news-gold);
  color: var(--news-gold);
}

.page-news .series-feature {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin-bottom: 28px;
  border-radius: var(--news-radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.page-news .series-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-news .series-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 44px 22px 22px;
  background: linear-gradient(180deg, rgba(13, 18, 28, 0) 0%, rgba(13, 18, 28, 0.92) 100%);
  color: #fff;
}

.page-news .series-overlay h3 {
  margin: 10px 0 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
}

.page-news .series-overlay p {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.82);
}

.page-news .series-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-news .series-item {
  padding: 18px 20px;
  border-radius: 12px;
  border-bottom: 3px solid var(--news-gold);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-news .series-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-news .series-item-num {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--news-gold);
}

.page-news .series-item h4 {
  margin: 8px 0 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}

.page-news .series-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247, 243, 235, 0.62);
}

/* 版本更新时间线 */
.page-news .version-timeline {
  padding-top: 56px;
}

.page-news .timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.page-news .timeline-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 6px 18px rgba(42, 42, 42, 0.08);
}

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

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

.page-news .timeline-list li {
  position: relative;
  padding: 0 0 26px 38px;
}

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

.page-news .timeline-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 3px solid var(--news-gold);
}

.page-news .timeline-version {
  display: inline-block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--news-red);
}

.page-news .timeline-list h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}

.page-news .timeline-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.66);
}

/* 底部引导横带 */
.page-news .read-more-band {
  margin-top: 48px;
  border-top: 3px solid rgba(212, 175, 55, 0.4);
  background: var(--color-sand);
}

.page-news .read-more-band .band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-news .read-more-band p {
  margin: 0 auto 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

/* 平板及以上 */
@media (min-width: 640px) {
  .page-news .category-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .page-news .category-entry--large {
    grid-column: span 2;
  }

  .page-news .category-entry--wide {
    grid-column: span 2;
  }

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

/* 桌面端 */
@media (min-width: 980px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    padding-top: 56px;
  }

  .page-news .arch-brand-note {
    right: 36px;
    font-size: 16px;
  }

  .page-news .bulletin-arch {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .page-news .arch-content {
    padding-left: 40px;
  }

  .page-news .category-index {
    padding-top: 64px;
  }

  .page-news .category-map {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .page-news .category-entry--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .page-news .category-entry--wide {
    grid-column: span 4;
  }

  .page-news .category-icon-figure {
    margin-top: 36px;
    margin-right: 8%;
    margin-left: auto;
  }

  .page-news .series-feature {
    min-height: 440px;
  }

  .page-news .series-overlay {
    padding: 80px 44px 36px;
  }

  .page-news .series-overlay h3 {
    font-size: 30px;
  }

  .page-news .series-overlay p {
    font-size: 15px;
  }

  .page-news .timeline-grid {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
  }
}

/* 减少动效偏好 */
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .page-news .featured-article:hover .featured-media img {
    transform: none;
  }

  .page-news .category-entry:hover {
    transform: none;
    box-shadow: none;
  }

  .page-news .category-entry:hover::before {
    opacity: 0.7;
    transform: translateX(-50%);
  }

  .page-news .news-item:hover {
    padding-left: 0;
  }

  .page-news .series-item:hover {
    transform: none;
  }
}
