.page-news {
  --news-cut: 14px;
  --news-rail: 3px;
  --news-line-soft: rgba(57, 255, 136, 0.18);
  --news-gold-soft: rgba(245, 182, 42, 0.22);
  --news-card-bg: rgba(18, 42, 68, 0.72);
  --news-hero-bg: linear-gradient(135deg, rgba(11, 27, 46, 0.96) 0%, rgba(18, 42, 68, 0.88) 58%, rgba(8, 19, 30, 0.96) 100%);
  background:
    radial-gradient(ellipse at 88% 8%, rgba(57, 255, 136, 0.08) 0%, transparent 48%),
    linear-gradient(180deg, var(--color-night) 0%, var(--color-deep) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.page-news .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.page-news .section {
  padding: 72px 0;
  position: relative;
}

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}

.page-news .section-index {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-neon);
  background: var(--color-card);
  border: 1px solid var(--color-line);
  padding: 6px 10px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  flex-shrink: 0;
}

.page-news .section-head__text {
  flex: 1;
  min-width: 0;
}

.page-news .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.page-news .section-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-silver);
  margin: 0;
  max-width: 64ch;
}

.page-news .section-head__more {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
  text-decoration: none;
  border-bottom: 1px solid var(--color-neon);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .section-head__more:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ===== 首屏 ===== */
.page-news .page-hero--news {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--color-line);
  background: var(--news-hero-bg);
  position: relative;
}

.page-news .page-hero--news::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon) 0%, transparent 38%, var(--color-gold) 100%);
  opacity: 0.7;
}

.page-news .breadcrumb {
  margin-bottom: 40px;
}

.page-news .breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-news .breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-silver);
}

.page-news .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: var(--color-line);
}

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

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

.page-news .breadcrumb__item.is-current {
  color: var(--color-white);
}

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

.page-news .hero-copy {
  max-width: 720px;
}

.page-news .eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin: 0 0 16px;
}

.page-news .page-title {
  margin: 0 0 20px;
}

.page-news .page-title__main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 106px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
}

.page-news .page-title__main::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  background: var(--color-neon);
  margin-left: 0.08em;
  border-radius: 50%;
  vertical-align: baseline;
}

.page-news .page-title__sub {
  display: block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(16px, 2.4vw, 24px);
  line-height: 1.3;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.page-news .page-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-silver);
  margin: 0 0 36px;
  max-width: 62ch;
}

.page-news .hero-data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.page-news .hero-data__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 18px;
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  clip-path: polygon(0 0, calc(100% - var(--news-cut)) 0, 100% var(--news-cut), 100% 100%, 0 100%);
  min-width: 120px;
}

.page-news .hero-data__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--color-neon);
}

.page-news .hero-data__label {
  font-size: 13px;
  color: var(--color-silver);
  line-height: 1.4;
}

.page-news .hero-visual {
  position: relative;
}

.page-news .hero-visual__img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-line);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.page-news .hero-visual__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.page-news .hero-visual__note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-neon);
  letter-spacing: 0.05em;
}

/* ===== 内容索引条 ===== */
.page-news .editor-index {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-deep);
  padding: 0;
}

.page-news .editor-index__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
  padding: 14px 0;
}

.page-news .editor-index__prefix {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-right: 8px;
}

.page-news .editor-index__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-silver);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-news .editor-index__item:hover {
  color: var(--color-white);
  border-color: var(--color-line);
  background: var(--news-card-bg);
}

.page-news .editor-index__num {
  color: var(--color-neon);
  font-size: 12px;
}

/* ===== 最新观察 ===== */
.page-news .latest-section {
  border-bottom: 1px solid var(--color-line);
}

.page-news .feature-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--color-line);
  background: var(--news-card-bg);
  position: relative;
}

.page-news .feature-story__media {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background:
    linear-gradient(180deg, transparent 35%, rgba(8, 19, 30, 0.92) 100%),
    url("{zhanqunpic:h:675w:1200}") center/cover no-repeat var(--color-card);
}

.page-news .feature-story__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.page-news .feature-story__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-white);
  margin: 0;
  position: relative;
  z-index: 1;
  padding-left: 12px;
  border-left: 3px solid var(--color-neon);
}

.page-news .feature-story__body {
  padding: 28px 28px 32px;
}

.page-news .feature-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .feature-story__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-silver);
}

.page-news .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.15);
}

.page-news .status-dot--green {
  background: var(--color-neon);
}

.page-news .feature-story__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--color-white);
}

.page-news .feature-story__excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-silver);
  margin: 0 0 24px;
  max-width: 58ch;
}

/* ===== 时间轴 ===== */
.page-news .latest-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-neon) 0%, var(--color-line) 30%, var(--color-line) 100%);
  opacity: 0.6;
}

.page-news .timeline__item {
  position: relative;
  padding: 0 0 32px 32px;
}

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

.page-news .timeline__node {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-card);
  border: 3px solid var(--color-neon);
  box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.12);
}

.page-news .timeline__item:not(:nth-child(1)) .timeline__node {
  border-color: var(--color-line);
  box-shadow: none;
}

.page-news .timeline__item:first-child {
  background: linear-gradient(90deg, rgba(57, 255, 136, 0.06), transparent 70%);
}

.page-news .timeline__item:first-child .timeline__node {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(245, 182, 42, 0.15);
}

.page-news .timeline__card {
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  padding: 20px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news .timeline__item:hover .timeline__card {
  border-color: var(--color-neon);
  transform: translateX(2px);
}

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

.page-news .timeline-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-silver);
  background: var(--color-card);
  border: 1px solid var(--color-line);
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

.page-news .timeline-tag--green {
  color: var(--color-neon);
  border-color: rgba(57, 255, 136, 0.4);
}

.page-news .timeline__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--color-white);
}

.page-news .timeline__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
  margin: 0 0 10px;
}

.page-news .timeline__foot {
  font-size: 12px;
  color: var(--color-silver);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-news .timeline__foot a {
  color: var(--color-neon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-news .timeline__foot a:hover {
  border-bottom-color: var(--color-neon);
}

.page-news .editor-note {
  align-self: start;
  position: relative;
}

.page-news .editor-note__inner {
  background: var(--color-deep);
  border-left: 3px solid var(--color-gold);
  padding: 24px 24px 26px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.page-news .editor-note__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.page-news .editor-note__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-silver);
  margin: 10px 0 18px;
}

.page-news .editor-note__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 136, 0.4);
  padding-bottom: 2px;
}

.page-news .editor-note__link:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ===== 战报专栏 ===== */
.page-news .rounds-section {
  background:
    radial-gradient(ellipse at 90% 30%, rgba(57, 255, 136, 0.05), transparent 50%),
    linear-gradient(180deg, var(--color-deep), var(--color-night));
  border-bottom: 1px solid var(--color-line);
}

.page-news .rounds-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 44px;
}

.page-news .rounds-grid-wrap {
  min-width: 0;
}

.page-news .rounds-grid-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-silver);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-line);
}

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

.page-news .rounds-grid__item {
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news .rounds-grid__item:hover {
  border-color: var(--color-silver);
  transform: translateY(-1px);
}

.page-news .rounds-grid__item.is-current {
  border-color: var(--color-neon);
  box-shadow: inset 0 3px 0 var(--color-neon), 0 0 12px rgba(57, 255, 136, 0.12);
}

.page-news .rounds-grid__item.is-current .rounds-grid__num {
  color: var(--color-neon);
}

.page-news .rounds-grid__item.is-past .rounds-grid__num {
  color: var(--color-silver);
}

.page-news .rounds-grid__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .rounds-grid__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.page-news .rounds-grid__label {
  font-size: 11px;
  color: var(--color-silver);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-news .rounds-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  padding: 20px;
}

.page-news .rounds-aside__img {
  width: 100%;
  border: 1px solid var(--color-line);
}

.page-news .rounds-aside__note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
  margin: 0;
}

.page-news .rounds-aside .btn {
  align-self: flex-start;
}

/* ===== 轮次详情 ===== */
.page-news .round-detail {
  border: 1px solid var(--color-line);
  background: var(--color-deep);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.page-news .round-detail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(90deg, rgba(57, 255, 136, 0.08), transparent 60%);
}

.page-news .round-detail__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.page-news .round-detail__count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
}

.page-news .round-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.page-news .round-detail__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(27, 58, 92, 0.6);
}

.page-news .round-detail__item:last-child {
  border-bottom: none;
}

.page-news .round-detail__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-silver);
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  padding: 3px 8px;
  flex-shrink: 0;
  min-width: 42px;
  text-align: center;
}

.page-news .round-detail__title {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-white);
}

.page-news .round-detail__state {
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
}

.page-news .state-locked {
  color: var(--color-gold);
}

.page-news .state-free {
  color: var(--color-neon);
}

/* ===== 赛事分类 ===== */
.page-news .categories-section {
  border-bottom: 1px solid var(--color-line);
}

.page-news .category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.page-news .category-nav__btn {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-silver);
  text-decoration: none;
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  padding: 8px 16px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-news .category-nav__btn:hover,
.page-news .category-nav__btn.is-active {
  color: var(--color-neon);
  border-color: var(--color-neon);
  background: rgba(57, 255, 136, 0.06);
}

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

.page-news .category-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--news-card-bg);
  border: 1px solid var(--color-line);
  padding: 24px;
  scroll-margin-top: calc(var(--header-height) + 80px);
  position: relative;
  overflow: hidden;
}

.page-news .category-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--news-rail);
  background: linear-gradient(180deg, var(--color-neon), var(--color-line));
  opacity: 0.6;
}

.page-news .category-row:nth-of-type(2)::before,
.page-news .category-row:nth-of-type(4)::before {
  background: linear-gradient(180deg, var(--color-gold), var(--color-line));
}

.page-news .category-row__num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-neon);
  opacity: 0.32;
  position: absolute;
  right: 16px;
  top: 10px;
}

.page-news .category-row:nth-of-type(2) .category-row__num,
.page-news .category-row:nth-of-type(4) .category-row__num {
  color: var(--color-gold);
}

.page-news .category-row__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--color-white);
}

.page-news .category-row__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-silver);
  margin: 0 0 16px;
  max-width: 52ch;
}

.page-news .category-row__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-news .category-row__stat {
  font-size: 13px;
  color: var(--color-silver);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.page-news .category-row__stat strong {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--color-white);
}

.page-news .category-row__img {
  width: 100%;
  border: 1px solid var(--color-line);
}

/* ===== 订阅提醒 ===== */
.page-news .subscribe-section {
  padding-bottom: 96px;
}

.page-news .subscribe-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.page-news .subscribe-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-gold));
}

.page-news .subscribe-panel__content {
  padding: 40px 28px 36px;
}

.page-news .subscribe-panel__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--color-white);
}

.page-news .subscribe-panel__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-silver);
  margin: 0 0 28px;
  max-width: 54ch;
}

.page-news .subscribe-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.page-news .subscribe-panel__trust {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-silver);
  margin: 0;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
  max-width: 52ch;
}

.page-news .subscribe-panel__visual {
  position: relative;
}

.page-news .subscribe-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 按钮和标签共享微调 ===== */
.page-news .btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-news .btn--primary {
  background: var(--color-neon);
  color: var(--color-deep);
  border: 1px solid var(--color-neon);
}

.page-news .btn--primary:hover {
  background: transparent;
  color: var(--color-neon);
  transform: translateY(-1px);
}

.page-news .btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-line);
}

.page-news .btn--ghost:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
  transform: translateY(-1px);
}

.page-news .btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.page-news .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-silver);
  background: var(--color-card);
  border: 1px solid var(--color-line);
  padding: 3px 8px;
  display: inline-block;
  line-height: 1.6;
}

.page-news .tag--green {
  color: var(--color-neon);
  border-color: rgba(57, 255, 136, 0.4);
}

.page-news .tag--gold {
  color: var(--color-gold);
  border-color: rgba(245, 182, 42, 0.35);
}

.page-news .data-num {
  font-family: var(--font-mono);
  font-weight: 700;
}

.page-news .data-num--sm {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
}

/* ===== 响应式 ===== */
@media (min-width: 620px) {
  .page-news .section {
    padding: 88px 0;
  }

  .page-news .feature-story__media {
    min-height: 300px;
  }

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

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

  .page-news .round-detail__item {
    border-right: 1px solid rgba(27, 58, 92, 0.6);
  }

  .page-news .round-detail__item:nth-child(2n) {
    border-right: none;
  }

  .page-news .category-row__info {
    padding-right: 56px;
  }

  .page-news .subscribe-panel__content {
    padding: 48px 40px 44px;
  }
}

@media (min-width: 980px) {
  .page-news .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 56px;
  }

  .page-news .page-hero--news {
    padding: 72px 0 64px;
  }

  .page-news .feature-story {
    grid-template-columns: 1.05fr 1fr;
  }

  .page-news .feature-story__media {
    min-height: 100%;
    align-items: flex-end;
  }

  .page-news .feature-story__body {
    padding: 34px 36px 36px;
  }

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

  .page-news .rounds-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    gap: 40px;
  }

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

  .page-news .rounds-grid__item {
    min-height: 72px;
  }

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

  .page-news .category-row {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
  }

  .page-news .category-row__img {
    max-width: 320px;
    margin-left: auto;
  }

  .page-news .category-row__info {
    flex: 1;
    padding-right: 20px;
  }

  .page-news .category-row__num {
    position: relative;
    right: auto;
    top: auto;
    flex-shrink: 0;
    font-size: 34px;
    width: 44px;
  }

  .page-news .subscribe-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-news .subscribe-panel__content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .subscribe-panel__visual {
    min-height: 420px;
  }
}

@media (min-width: 1240px) {
  .page-news .rounds-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

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

  .page-news .timeline__item:hover .timeline__card,
  .page-news .rounds-grid__item:hover,
  .page-news .btn:hover {
    transform: none;
  }
}
