.page-news {
  --news-report: var(--phx-flame);
  --news-special: var(--phx-gold);
  --news-version: var(--phx-indigo);
  --news-line: rgba(255, 255, 255, 0.08);
}

/* ===== Hero 首屏区 ===== */
.page-news .news-hero {
  position: relative;
  padding: var(--phx-space-3) 0 var(--phx-space-4);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 90, 31, 0.2), transparent 42%),
    linear-gradient(160deg, var(--phx-night) 0%, var(--phx-night-blue) 58%, var(--phx-indigo) 100%);
  overflow: hidden;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, transparent 47%, rgba(255, 90, 31, 0.25) 47%, rgba(255, 90, 31, 0.25) 53%, transparent 53%);
  transform: rotate(12deg);
  pointer-events: none;
}
.page-news .news-hero .phx-breadcrumb {
  margin-bottom: var(--phx-space-4);
}
.page-news .news-hero__grid {
  display: grid;
  gap: var(--phx-space-4);
}
.page-news .news-hero__content {
  position: relative;
  z-index: 1;
}
.page-news .news-hero h1 {
  font-family: var(--phx-font-headline);
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  margin: var(--phx-space-2) 0 var(--phx-space-1);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.page-news .news-hero__lead {
  color: var(--phx-flame-soft);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--phx-space-2);
}
.page-news .news-hero__desc {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: var(--phx-space-3);
  font-size: 15px;
  line-height: 1.7;
}
.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--phx-space-2);
}
.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--phx-space-2);
  position: relative;
  z-index: 1;
}
.page-news .news-hero__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--phx-glass-border);
  border-radius: var(--phx-radius-md);
  padding: var(--phx-space-2);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--phx-transition), border-color var(--phx-transition);
}
.page-news .news-hero__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.55);
}
.page-news .news-hero__stat-num {
  display: block;
  font-family: var(--phx-font-headline);
  font-size: 28px;
  line-height: 1.2;
  color: var(--phx-gold);
}
.page-news .news-hero__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ===== 区块通用标题 ===== */
.page-news .news-section-head {
  margin: var(--phx-space-4) 0 var(--phx-space-3);
}
.page-news .news-section-head h2 {
  font-family: var(--phx-font-headline);
  font-size: 36px;
  line-height: 1.2;
  margin: var(--phx-space-1) 0 var(--phx-space-1);
}
.page-news .news-section-head__desc {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 最新战报时间轴 ===== */
.page-news .news-timeline-section {
  background: var(--phx-cream);
}
.page-news .news-timeline-cover {
  position: relative;
  border-radius: var(--phx-radius-lg);
  overflow: hidden;
  margin-top: var(--phx-space-3);
}
.page-news .news-timeline-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--phx-cream) 100%);
  pointer-events: none;
}
.page-news .news-timeline-cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* 过滤工具条 */
.page-news .news-filter-area {
  position: relative;
}
.page-news .news-filter-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.page-news .news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--phx-space-1);
  margin: var(--phx-space-3) 0;
}
.page-news .news-filter-bar__label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3ddd6;
  font-size: 13px;
  font-weight: 700;
  color: var(--phx-text-2);
  cursor: pointer;
  transition: all var(--phx-transition);
  user-select: none;
}
.page-news .news-filter-bar__label:hover {
  border-color: var(--phx-flame);
  color: var(--phx-flame);
}
.page-news #phx-filter-all:checked ~ .news-filter-bar label[for="phx-filter-all"],
.page-news #phx-filter-report:checked ~ .news-filter-bar label[for="phx-filter-report"],
.page-news #phx-filter-special:checked ~ .news-filter-bar label[for="phx-filter-special"] {
  background: var(--phx-flame);
  border-color: var(--phx-flame);
  color: #fff;
}
.page-news #phx-filter-report:checked ~ .news-timeline .news-timeline__item:not([data-category="report"]),
.page-news #phx-filter-special:checked ~ .news-timeline .news-timeline__item:not([data-category="special"]) {
  display: none;
}

/* 时间轴主体 */
.page-news .news-timeline {
  position: relative;
  padding-left: 44px;
}
.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--phx-flame) 0%, var(--phx-indigo) 60%, var(--phx-gold) 100%);
}
.page-news .news-timeline__item {
  position: relative;
  margin-bottom: var(--phx-space-3);
}
.page-news .news-timeline__marker {
  position: absolute;
  left: -36px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--phx-cream);
  border: 4px solid var(--phx-flame);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.14);
}
.page-news .news-timeline__item[data-category="special"] .news-timeline__marker {
  border-color: var(--phx-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}
.page-news .news-timeline__item:hover .news-timeline__marker {
  animation: phx-news-pulse 1s ease-out infinite;
}
@keyframes phx-news-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}
.page-news .news-timeline__card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--phx-radius-md);
  border-left: 4px solid var(--phx-flame);
  padding: var(--phx-space-2);
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.06);
  transition: transform var(--phx-transition), box-shadow var(--phx-transition);
}
.page-news .news-timeline__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.12), transparent);
  transition: width var(--phx-transition);
  pointer-events: none;
}
.page-news .news-timeline__item[data-category="special"] .news-timeline__card {
  border-left-color: var(--phx-gold);
}
.page-news .news-timeline__item[data-category="special"] .news-timeline__card::before {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), transparent);
}
.page-news .news-timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 20, 40, 0.1);
}
.page-news .news-timeline__card:hover::before {
  width: 100%;
}
.page-news .news-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--phx-space-1);
  margin-bottom: var(--phx-space-1);
}
.page-news .news-timeline__time,
.page-news .news-version-card__time {
  font-size: 12px;
  color: var(--phx-text-2);
}
.page-news .news-timeline__card h3 {
  font-family: var(--phx-font-headline);
  font-size: 17px;
  line-height: 1.3;
  margin: var(--phx-space-1) 0 6px;
  color: var(--phx-text);
}
.page-news .news-timeline__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--phx-text-2);
  margin-bottom: var(--phx-space-1);
}
.page-news .news-timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--phx-indigo);
  text-decoration: none;
  transition: color var(--phx-transition);
}
.page-news .news-timeline__link:hover {
  color: var(--phx-flame);
}

/* ===== 分类标签 ===== */
.page-news .news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.page-news .news-tag--report {
  background: rgba(255, 90, 31, 0.1);
  color: var(--phx-flame);
}
.page-news .news-tag--version {
  background: rgba(30, 78, 121, 0.12);
  color: var(--phx-indigo);
}
.page-news .news-tag--special {
  background: rgba(212, 175, 55, 0.16);
  color: #82660f;
}

/* ===== 版本更新 ===== */
.page-news .news-version-section {
  position: relative;
  background:
    linear-gradient(200deg, var(--phx-night) 0%, var(--phx-night-blue) 55%, var(--phx-indigo) 100%);
  overflow: hidden;
}
.page-news .news-version-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 18%;
  width: 260px;
  height: 380px;
  background: linear-gradient(135deg, transparent 47%, rgba(255, 90, 31, 0.12) 47%, rgba(255, 90, 31, 0.12) 53%, transparent 53%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.page-news .news-version-section .news-section-head h2 {
  color: #fff;
}
.page-news .news-version-section .phx-muted {
  color: rgba(255, 255, 255, 0.6);
}
.page-news .news-version-section .phx-section-kicker {
  color: var(--phx-flame-soft);
}
.page-news .news-version-grid {
  display: grid;
  gap: var(--phx-space-3);
}
.page-news .news-version-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--phx-glass-border);
  border-radius: var(--phx-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--phx-transition), border-color var(--phx-transition), background var(--phx-transition);
}
.page-news .news-version-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.page-news .news-version-card__media {
  display: none;
}
.page-news .news-version-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .news-version-card__body {
  padding: var(--phx-space-2);
  flex: 1;
}
.page-news .news-version-card__meta {
  display: flex;
  align-items: center;
  gap: var(--phx-space-1);
  margin-bottom: 4px;
}
.page-news .news-version-card__ver {
  font-family: var(--phx-font-headline);
  font-size: 22px;
  line-height: 1.15;
  color: var(--phx-flame-soft);
  margin: 4px 0 2px;
}
.page-news .news-version-card__body h3 {
  font-family: var(--phx-font-headline);
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 6px;
  color: #fff;
}
.page-news .news-version-card__body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.page-news .news-version-card__time {
  color: rgba(255, 255, 255, 0.45);
}

/* ===== 专题速览 ===== */
.page-news .news-special-section {
  background: var(--phx-cream);
  position: relative;
}
.page-news .news-special-section .news-section-head h2 {
  color: var(--phx-text);
}
.page-news .news-special-section .phx-section-kicker {
  color: var(--phx-flame);
}
.page-news .news-special-grid {
  display: grid;
  gap: var(--phx-space-3);
}
.page-news .news-special-card {
  background: #fff;
  border-radius: var(--phx-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.05);
  transition: transform var(--phx-transition), box-shadow var(--phx-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-news .news-special-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--phx-special, var(--phx-gold));
  z-index: 2;
}
.page-news .news-special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 20, 40, 0.1);
}
.page-news .news-special-card__media {
  display: none;
}
.page-news .news-special-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-news .news-special-card__body {
  padding: var(--phx-space-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.page-news .news-special-card__num {
  font-family: var(--phx-font-headline);
  font-size: 13px;
  color: var(--phx-gold);
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.2;
}
.page-news .news-special-card__body h3 {
  font-family: var(--phx-font-headline);
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  color: var(--phx-text);
}
.page-news .news-special-card__body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--phx-text-2);
  flex: 1;
  margin: 0;
}
.page-news .news-special-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--phx-indigo);
  text-decoration: none;
  transition: color var(--phx-transition);
}
.page-news .news-special-card__link:hover {
  color: var(--phx-flame);
}

/* 专题CTA条 */
.page-news .news-special-cta {
  margin-top: var(--phx-space-4);
  background: linear-gradient(140deg, var(--phx-night-blue), var(--phx-indigo));
  border-radius: var(--phx-radius-md);
  padding: var(--phx-space-3);
  display: flex;
  flex-direction: column;
  gap: var(--phx-space-2);
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(10, 20, 40, 0.12);
}
.page-news .news-special-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-news .news-special-cta__title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.page-news .news-special-cta__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

/* ===== 订阅提醒 ===== */
.page-news .news-subscribe-section {
  position: relative;
  background:
    linear-gradient(120deg, rgba(10, 20, 40, 0.25) 0%, transparent 55%),
    var(--phx-flame);
  overflow: hidden;
}
.page-news .news-subscribe-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.1) 54%, transparent 54%);
  transform: rotate(20deg);
  pointer-events: none;
}
.page-news .news-subscribe {
  display: grid;
  gap: var(--phx-space-3);
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-news .news-subscribe__media {
  display: none;
}
.page-news .news-subscribe__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--phx-radius-md);
}
.page-news .news-subscribe__content {
  color: #fff;
}
.page-news .news-subscribe__kicker {
  color: rgba(255, 255, 255, 0.7);
}
.page-news .news-subscribe h2 {
  font-family: var(--phx-font-headline);
  font-size: 36px;
  line-height: 1.2;
  margin: var(--phx-space-1) 0;
}
.page-news .news-subscribe__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
  max-width: 440px;
}
.page-news .news-subscribe__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--phx-space-1);
  margin-top: var(--phx-space-2);
}
.page-news .news-subscribe__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--phx-radius-sm);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  color: var(--phx-text);
  outline: none;
  transition: border-color var(--phx-transition), box-shadow var(--phx-transition);
}
.page-news .news-subscribe__input:focus {
  border-color: var(--phx-night);
  box-shadow: 0 0 0 3px rgba(10, 20, 40, 0.2);
}
.page-news .news-subscribe__btn {
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.page-news .news-subscribe__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: var(--phx-space-2);
  line-height: 1.5;
}

/* ===== 桌面端媒体查询 ===== */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding: var(--phx-space-5) 0 var(--phx-space-4);
  }
  .page-news .news-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--phx-space-5);
    align-items: center;
  }
  .page-news .news-hero h1 {
    font-size: 72px;
  }
  .page-news .news-hero__lead {
    font-size: 24px;
  }
  .page-news .news-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--phx-space-2);
  }
  .page-news .news-hero__stat-num {
    font-size: 32px;
  }
  .page-news .news-timeline-cover img {
    height: 400px;
  }
  .page-news .news-section-head {
    margin: var(--phx-space-5) 0 var(--phx-space-3);
  }
  .page-news .news-section-head h2 {
    font-size: 40px;
  }
  .page-news .news-timeline {
    padding-left: 64px;
  }
  .page-news .news-timeline::before {
    left: 20px;
    width: 4px;
  }
  .page-news .news-timeline__marker {
    left: -50px;
    width: 20px;
    height: 20px;
    border-width: 5px;
  }
  .page-news .news-timeline__card {
    padding: var(--phx-space-3);
  }
  .page-news .news-timeline__card h3 {
    font-size: 19px;
  }
  .page-news .news-version-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--phx-space-3);
  }
  .page-news .news-version-card__media {
    display: block;
  }
  .page-news .news-version-card__media img {
    height: 160px;
  }
  .page-news .news-version-card__body {
    padding: var(--phx-space-3);
  }
  .page-news .news-version-card__ver {
    font-size: 26px;
  }
  .page-news .news-special-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--phx-space-3);
  }
  .page-news .news-special-card__media {
    display: block;
    height: 160px;
  }
  .page-news .news-special-card__body {
    padding: var(--phx-space-3);
  }
  .page-news .news-special-card__body h3 {
    font-size: 19px;
  }
  .page-news .news-special-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--phx-space-3) var(--phx-space-4);
  }
  .page-news .news-subscribe {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--phx-space-5);
  }
  .page-news .news-subscribe__media {
    display: block;
  }
  .page-news .news-subscribe h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-version-card__media img {
    height: 180px;
  }
  .page-news .news-special-card__media {
    height: 180px;
  }
  .page-news .news-subscribe {
    gap: var(--phx-space-6);
  }
}

.page-news {
  --phx-special: transparent;
}
