.page-news {
  --news-card-pad: clamp(20px, 3vw, 32px);
  --news-accent-soft: rgba(255, 107, 53, 0.1);
  background: var(--c-white);
  padding-top: var(--header-h);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ========== Hero ========== */
.page-news .news-hero {
  position: relative;
  background: var(--c-primary);
  color: var(--c-white);
  padding: clamp(48px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -16%;
  top: -8%;
  width: 62%;
  height: 120%;
  background: var(--c-accent);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.12;
  pointer-events: none;
}
.page-news .news-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}
.page-news .news-hero__text .section-kicker {
  color: var(--c-gold);
}
.page-news .news-hero__text h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 14px 0 20px;
}
.page-news .news-hero__text > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.page-news .news-hero__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-hero__flags .tag-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.28);
}
.page-news .news-hero__flags .tag-pill--gold {
  background: rgba(255, 215, 0, 0.16);
  color: var(--c-gold);
  border-color: rgba(255, 215, 0, 0.45);
}
.page-news .news-hero__side {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.page-news .news-hero__side .chapter-mark {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.8;
  color: var(--c-gold);
  opacity: 0.9;
}
.page-news .news-hero__side .vertical-note {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ========== 面包屑 ========== */
.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 8px;
  font-size: 13px;
  color: var(--c-muted);
}
.page-news .breadcrumb .text-link {
  color: var(--c-primary);
  text-decoration: none;
  font-weight: 600;
}
.page-news .breadcrumb .text-link:hover {
  color: var(--c-accent);
}
.page-news .breadcrumb__sep {
  color: var(--c-muted);
}

/* ========== 快速筛选 ========== */
.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 8px;
}
.page-news .news-filter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  margin-right: 4px;
}
.page-news .news-filter .tag-pill {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  background: var(--c-white);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.page-news .news-filter .tag-pill:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

/* ========== 章节头 ========== */
.page-news .news-section-head {
  margin-bottom: 36px;
}
.page-news .news-section-head .section-kicker {
  color: var(--c-accent);
}
.page-news .news-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 900;
  color: var(--c-primary);
  margin: 8px 0 12px;
}
.page-news .news-section-head p {
  max-width: 680px;
  color: var(--c-muted);
  line-height: 1.8;
  font-size: 14px;
}

/* ========== 今日战报 ========== */
.page-news .news-today {
  padding: 40px 0 24px;
}
.page-news .news-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 44px;
}
.page-news .news-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .news-banner figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(10, 31, 68, 0.82);
  color: var(--c-white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ========== 战报时间线 ========== */
.page-news .news-timeline {
  position: relative;
  margin-top: 8px;
}
.page-news .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0 0 40px 26px;
}
.page-news .news-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent), rgba(255, 107, 53, 0.08));
}
.page-news .news-item:last-child::before {
  bottom: 24px;
}
.page-news .news-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 4px solid var(--c-white);
  box-shadow: 0 0 0 2px var(--c-gold), 0 0 20px rgba(255, 215, 0, 0.45);
}
.page-news .news-item__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.page-news .news-item__seq {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: 0.01em;
}
.page-news .news-item__league {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.page-news .news-item__card {
  background: var(--c-white);
  border: 1px solid rgba(28, 43, 54, 0.08);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-lg);
  padding: var(--news-card-pad);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.page-news .news-item__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.page-news .news-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.page-news .news-item__score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--c-primary);
}
.page-news .news-item__card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.page-news .news-item__card > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.page-news .news-item:target .news-item__card {
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(255, 107, 53, 0.24);
}

/* ========== 战报详情展开 ========== */
.page-news .news-detail {
  border-top: 1px dashed rgba(28, 43, 54, 0.14);
  padding-top: 10px;
  margin-top: 4px;
}
.page-news .news-detail summary {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-news .news-detail summary::-webkit-details-marker {
  display: none;
}
.page-news .news-detail summary::before {
  content: "+";
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s var(--ease-slide);
}
.page-news .news-detail[open] summary::before {
  content: "−";
}
.page-news .news-detail__body {
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-primary);
}
.page-news .news-detail__body p + p {
  margin-top: 8px;
}

/* ========== 版本日志 ========== */
.page-news .news-versions {
  background: var(--c-light);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-news .news-versions::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(10, 31, 68, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .news-versions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.page-news .news-versions__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.page-news .news-versions__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .news-versions__media figcaption {
  padding: 10px 4px 0;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}
.page-news .news-versions__log {
  position: relative;
  padding-top: 4px;
}
.page-news .version-item {
  position: relative;
  padding-left: 26px;
  padding-bottom: 30px;
}
.page-news .version-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.16);
}
.page-news .version-item::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 107, 53, 0.22);
}
.page-news .version-item:last-child::after {
  display: none;
}
.page-news .version-item__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  background: var(--news-accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.page-news .version-item__body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.page-news .version-item__body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0;
}

/* ========== 版本提示面板 ========== */
.page-news .news-versions__note {
  margin-top: 12px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
.page-news .news-versions__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
}
.page-news .news-versions__note .text-link {
  color: var(--c-gold);
  font-weight: 700;
  text-decoration: underline;
}
.page-news .news-versions__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== 按钮 ========== */
.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease-out), background 0.26s var(--ease-out);
}
.page-news .btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.32);
}
.page-news .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.42);
}
.page-news .btn-line {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.page-news .btn-line:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ========== 赛事专题 ========== */
.page-news .news-topics {
  padding: 72px 0;
}
.page-news .news-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-news .news-topics__card {
  background: var(--c-white);
  border: 1px solid rgba(28, 43, 54, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.page-news .news-topics__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.page-news .news-topics__img {
  position: relative;
  margin: 0;
}
.page-news .news-topics__img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}
.page-news .news-topics__body {
  padding: 24px;
  flex: 1;
  position: relative;
}
.page-news .news-topics__num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(10, 31, 68, 0.08);
  margin-bottom: 12px;
}
.page-news .news-topics__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-primary);
  margin: 10px 0 10px;
  line-height: 1.4;
}
.page-news .news-topics__body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.page-news .news-topics__body .text-link {
  color: var(--c-accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.page-news .news-topics__body .text-link:hover {
  text-decoration: underline;
}

/* ========== 新闻订阅 ========== */
.page-news .news-subscribe {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-news .news-subscribe::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  pointer-events: none;
}
.page-news .news-subscribe__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.page-news .news-subscribe__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-news .news-subscribe__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .news-subscribe__content .section-kicker {
  color: var(--c-gold);
}
.page-news .news-subscribe__content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  margin: 8px 0 16px;
}
.page-news .news-subscribe__content > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
.page-news .news-subscribe__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-news .news-subscribe__points li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.page-news .news-subscribe__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--c-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}
.page-news .news-subscribe__points .text-link {
  color: var(--c-gold);
  font-weight: 600;
  text-decoration: none;
}
.page-news .news-subscribe__points .text-link:hover {
  text-decoration: underline;
}

/* ========== 桌面端增强 ========== */
@media (min-width: 820px) {
  .page-news .news-hero__inner {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .page-news .news-hero::after {
    opacity: 0.38;
  }
  .page-news .news-hero__side {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-end;
  }
  .page-news .news-item {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
  .page-news .news-item:nth-child(even) .news-item__card {
    margin-right: -24px;
  }
  .page-news .news-item:nth-child(odd) .news-item__card {
    margin-left: 24px;
  }
  .page-news .news-item__card {
    padding: 28px;
  }
  .page-news .news-versions__grid {
    grid-template-columns: 4fr 6fr;
    gap: 48px;
  }
  .page-news .news-versions__note {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
  }
  .page-news .news-topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-news .news-subscribe__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

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