.page-news {
  overflow-x: hidden;
  background: var(--light-background);
}

/* 面包屑 */
.page-news .breadcrumbs {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 13px;
  color: var(--metal-gray);
}
.page-news .breadcrumbs__link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}
.page-news .breadcrumbs__link:hover {
  text-decoration: underline;
}
.page-news .breadcrumbs__current {
  font-weight: 700;
  color: var(--night-blue-black);
}

/* 英雄区 */
.page-news .news-hero {
  position: relative;
  background: linear-gradient(135deg, var(--night-blue-black) 0%, var(--dark-blue) 100%);
  padding: 48px 0 56px;
  overflow: hidden;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0%, transparent 55%, rgba(198, 255, 0, 0.07) 55%, rgba(198, 255, 0, 0.07) 58%, transparent 58%),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(255, 255, 255, 0.03) 14px 15px);
  pointer-events: none;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--fluorescent-yellow-green) 0%, var(--primary-green) 62%, var(--china-red) 100%);
}
.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}
.page-news .news-hero__content {
  margin-bottom: 32px;
}
.page-news .news-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fluorescent-yellow-green);
  margin-bottom: 16px;
}
.page-news .news-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 20px;
  color: #ffffff;
}
.page-news .news-hero__title-mark {
  color: var(--fluorescent-yellow-green);
}
.page-news .news-hero__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42em;
  margin-bottom: 24px;
}
.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-hero__figure {
  margin: 0;
  background: var(--deep-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(198, 255, 0, 0.14), 0 0 48px rgba(46, 139, 87, 0.2);
}
.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
}

/* 最新洞察 */
.page-news .news-latest {
  background: var(--light-background);
}
.page-news .news-layout {
  display: grid;
  gap: 40px;
  margin-top: 36px;
}
.page-news .news-layout__main {
  display: flex;
  flex-direction: column;
}
.page-news .news-article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px 12px;
  border-bottom: 1px solid var(--border-color);
  border-left: 3px solid transparent;
  border-radius: 0 10px 10px 0;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.page-news .news-article:hover {
  border-left-color: var(--fluorescent-yellow-green);
  background: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(11, 27, 42, 0.06);
}
.page-news .news-article__index {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--fluorescent-yellow-green);
  background: var(--night-blue-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px 0 10px 0;
  align-self: start;
  margin-top: 4px;
}
.page-news .news-article__body {
  min-width: 0;
}
.page-news .news-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.page-news .news-article__read {
  font-size: 12px;
  color: var(--metal-gray);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.page-news .news-article__title {
  font-size: clamp(1.05rem, 2.4vw, 1.38rem);
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 8px;
}
.page-news .news-article__title a {
  color: var(--night-blue-black);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news .news-article__title a:hover {
  color: var(--primary-green);
}
.page-news .news-article__summary {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(11, 27, 42, 0.68);
  margin: 0;
}

/* 文章标签 */
.page-news .news-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 3px;
  white-space: nowrap;
}
.page-news .news-tag--analysis {
  background: rgba(46, 139, 87, 0.12);
  color: var(--deep-green);
  border: 1px solid var(--primary-green);
}
.page-news .news-tag--report {
  background: rgba(198, 255, 0, 0.24);
  color: var(--deep-green);
  border: 1px solid rgba(198, 255, 0, 0.7);
}
.page-news .news-tag--update {
  background: rgba(200, 16, 46, 0.08);
  color: var(--china-red);
  border: 1px solid var(--china-red);
}
.page-news .news-tag--story {
  background: rgba(11, 27, 42, 0.06);
  color: var(--night-blue-black);
  border: 1px solid var(--metal-gray);
}

/* 侧边栏 */
.page-news .news-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-news .news-aside-block {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
}
.page-news .news-aside-block--ink {
  background: var(--night-blue-black);
  border-color: var(--night-blue-black);
  color: #ffffff;
}
.page-news .news-aside-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--metal-gray);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
}
.page-news .news-aside-block--ink .news-aside-title {
  color: var(--fluorescent-yellow-green);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.page-news .news-tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-tag-list__item + .news-tag-list__item {
  border-top: 1px solid rgba(11, 27, 42, 0.06);
}
.page-news .news-tag-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: var(--night-blue-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.page-news .news-tag-list__link:hover {
  color: var(--primary-green);
  padding-left: 8px;
}
.page-news .news-tag-list__count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--metal-gray);
  background: var(--light-background);
  padding: 2px 10px;
  border-radius: 12px;
}
.page-news .news-aside-feature {
  display: block;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-news .news-aside-feature:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.page-news .news-aside-feature__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fluorescent-yellow-green);
}
.page-news .news-aside-feature__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  margin: 6px 0 4px;
  transition: color 0.2s ease;
}
.page-news .news-aside-feature:hover .news-aside-feature__title {
  color: var(--fluorescent-yellow-green);
}
.page-news .news-aside-feature__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.page-news .news-aside-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(11, 27, 42, 0.7);
  margin: 0 0 16px;
}

/* 专题系列 */
.page-news .news-series {
  background: var(--night-blue-black);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.page-news .news-series::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(198, 255, 0, 0.08);
  border-radius: 50%;
}
.page-news .section--dark .section-head__title {
  color: #ffffff;
}
.page-news .news-series-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.page-news .news-series-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
  position: relative;
}
.page-news .news-series-card:hover {
  border-color: var(--fluorescent-yellow-green);
  background: rgba(198, 255, 0, 0.05);
  transform: translateY(-4px);
}
.page-news .news-series-card--featured {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.32) 0%, rgba(11, 27, 42, 0.92) 100%), var(--night-blue-black);
  border-color: rgba(198, 255, 0, 0.5);
  grid-column: 1 / -1;
}
.page-news .news-series-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fluorescent-yellow-green);
  margin-bottom: 12px;
}
.page-news .news-series-card__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.25;
}
.page-news .news-series-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}
.page-news .news-series-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-series-card__list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
}

/* 数据报告 */
.page-news .news-report {
  background: var(--light-background);
}
.page-news .news-report-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}
.page-news .news-report__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--china-red);
  margin-bottom: 12px;
}
.page-news .news-report__content h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 14px;
}
.page-news .news-report__content > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(11, 27, 42, 0.72);
  margin-bottom: 20px;
}
.page-news .news-report__findings {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.page-news .news-report__findings li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(11, 27, 42, 0.82);
  border-bottom: 1px dashed rgba(11, 27, 42, 0.14);
}
.page-news .news-report__findings li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--fluorescent-yellow-green);
  border: 2px solid var(--deep-green);
  border-radius: 2px;
  transform: rotate(45deg);
}
.page-news .news-report__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.page-news .news-report__stat {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
}
.page-news .news-report__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-report__figure {
  margin: 0;
  background: var(--dark-blue);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 12px 12px 0 rgba(46, 139, 87, 0.2);
}
.page-news .news-report__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-report__figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.68);
}

/* 版本更新与用户故事 */
.page-news .news-more {
  background: var(--light-background);
}
.page-news .news-more-grid {
  display: grid;
  gap: 24px;
  margin-top: 12px;
}
.page-news .news-update,
.page-news .news-story {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 28px;
}
.page-news .news-update__label,
.page-news .news-story__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 10px;
}
.page-news .news-update h2,
.page-news .news-story h2 {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 20px;
}
.page-news .news-update__image,
.page-news .news-story__figure {
  margin: 0 0 20px;
  background: var(--dark-blue);
  border-radius: 10px;
  overflow: hidden;
}
.page-news .news-update__image img,
.page-news .news-story__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-story__figure figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
}
.page-news .news-update__timeline {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.page-news .news-update__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 27, 42, 0.08);
}
.page-news .news-update__item:last-child {
  border-bottom: 0;
}
.page-news .news-update__version {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 14px;
  color: var(--fluorescent-yellow-green);
  background: var(--night-blue-black);
  border-radius: 6px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-news .news-update__item h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0 0 4px;
}
.page-news .news-update__item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(11, 27, 42, 0.66);
  margin: 0;
}
.page-news .news-story__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(11, 27, 42, 0.72);
  margin-bottom: 20px;
}

/* 底部发现区 */
.page-news .news-discovery {
  background: var(--deep-green);
  color: #ffffff;
}
.page-news .news-discovery__inner {
  text-align: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.page-news .news-discovery__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fluorescent-yellow-green);
  margin-bottom: 12px;
}
.page-news .news-discovery__title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  max-width: 24em;
  margin: 0 auto 24px;
}
.page-news .news-discovery__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* 桌面端 */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 56px 0 72px;
  }
  .page-news .news-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
  }
  .page-news .news-hero__content {
    margin-bottom: 0;
  }
  .page-news .news-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
  }
  .page-news .news-series-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .news-report-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
  .page-news .news-more-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .page-news .news-update,
  .page-news .news-story {
    padding: 36px 32px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero__inner {
    min-height: 460px;
  }
  .page-news .news-article {
    grid-template-columns: 68px 1fr;
    gap: 24px;
    padding: 30px 16px;
  }
  .page-news .news-article__index {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }
  .page-news .news-series-grid {
    gap: 24px;
  }
  .page-news .news-report__stats {
    gap: 16px;
  }
}
