.page-news {
  --news-panel-bg: rgba(30, 58, 138, 0.42);
  --news-panel-border: rgba(58, 90, 140, 0.55);
  --news-card-bg: rgba(30, 58, 138, 0.66);
  --news-timeline-line: rgba(58, 90, 140, 0.65);
  --news-grid-line: rgba(58, 90, 140, 0.24);
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-body);
  padding-bottom: 72px;
}

.page-news .breadcrumb {
  padding-top: 20px;
  padding-bottom: 0;
}

.page-news .breadcrumb a {
  color: var(--c-dim);
  text-decoration: none;
}

.page-news .breadcrumb a:hover {
  color: var(--c-lime);
}

.page-news .breadcrumb [aria-current="page"] {
  color: var(--c-orange);
}

/* ===== 页面头部 ===== */
.page-news .news-head {
  position: relative;
  padding: 44px 0 54px;
  background: var(--c-deep);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}

.page-news .news-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--news-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-news .news-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(200, 255, 0, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 107, 53, 0.05),
    0 0 0 58px rgba(200, 255, 0, 0.04);
  pointer-events: none;
}

.page-news .news-head__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-head__badge {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 22px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.16);
  border: 1px solid rgba(255, 107, 53, 0.45);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-orange);
}

.page-news .news-head__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-lime);
}

.page-news .news-head h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  max-width: 900px;
  color: var(--c-white);
}

.page-news .news-head__lead {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-dim);
}

.page-news .news-head__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(58, 90, 140, 0.4);
  font-size: 14px;
  color: var(--c-dim);
}

.page-news .news-head__meta span::before {
  content: "◆ ";
  color: var(--c-orange);
  font-size: 12px;
}

/* ===== 01 + 02 分类筛选与最新战报 ===== */
.page-news .news-desk {
  background: var(--c-deep);
  padding: 56px 0 8px;
}

.page-news .news-desk__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.page-news .section-head--compact {
  margin-bottom: 14px;
}

.page-news .news-desk .section-head__title,
.page-news .news-feature .section-head__title {
  color: var(--c-white);
}

.page-news .news-desk .section-head__note,
.page-news .news-feature .section-head__note {
  color: var(--c-dim);
}

/* 筛选栏 */
.page-news .news-filter {
  min-width: 0;
}

.page-news .filter-card {
  background: var(--news-panel-bg);
  border: 1px solid var(--news-panel-border);
  clip-path: var(--clip-corner);
  padding: 22px 20px 20px;
}

.page-news .filter-card__media {
  margin: -22px -20px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--news-panel-border);
}

.page-news .filter-card__media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news .filter-card__title {
  margin: 20px 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-lime);
}

.page-news .filter-card__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 6px;
  background: var(--c-orange);
}

.page-news .filter-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-news .filter-card__list li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid transparent;
  font-size: 15px;
  line-height: 1.4;
  color: var(--c-dim);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.page-news .filter-card__list li:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
}

.page-news .filter-card__list li.is-active {
  background: rgba(255, 107, 53, 0.18);
  border-left-color: var(--c-orange);
  color: var(--c-white);
  font-weight: 600;
}

.page-news .filter-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .filter-card__tags span {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(58, 90, 140, 0.5);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  font-size: 13px;
  color: var(--c-dim);
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.page-news .filter-card__tags span:hover {
  background: rgba(200, 255, 0, 0.14);
  color: var(--c-lime);
}

.page-news .filter-card__foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed rgba(58, 90, 140, 0.5);
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-dim);
}

.page-news .filter-card__foot a {
  display: inline-block;
  margin-top: 6px;
  color: var(--c-lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 文章流 */
.page-news .news-feed {
  min-width: 0;
}

.page-news .feed-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 10px;
  margin-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-news .feed-tabs::-webkit-scrollbar {
  display: none;
}

.page-news .feed-tabs span {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(58, 90, 140, 0.5);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.page-news .feed-tabs span:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
}

.page-news .feed-tabs span.is-active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}

.page-news .feed-tabs__hint {
  margin: 0 0 22px;
  font-size: 12px;
  color: var(--c-dim);
}

/* 战报时间轴 */
.page-news .report-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0;
  position: relative;
}

.page-news .report-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--news-timeline-line);
}

.page-news .report-item {
  position: relative;
  padding: 0 0 26px 22px;
}

.page-news .report-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--c-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.16);
}

.page-news .report-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-news .report-item__date {
  display: inline-block;
  padding: 3px 12px;
  background: var(--c-lime);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-dark);
}

.page-news .report-item__tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-orange);
}

.page-news .report-item__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--news-card-bg);
  border: 1px solid var(--news-panel-border);
  clip-path: var(--clip-corner);
  padding: 16px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.page-news .report-item__card:hover {
  background: rgba(30, 58, 138, 0.8);
  transform: translateY(-2px);
}

.page-news .report-item__card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border: 1px solid rgba(58, 90, 140, 0.4);
}

.page-news .report-item__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: var(--c-white);
}

.page-news .report-item__body p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-dim);
}

.page-news .report-item__read {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news .report-item__card--compact {
  padding: 16px;
  display: block;
}

.page-news .report-item__card--compact .report-item__body h3 {
  font-size: 18px;
}

.page-news .feed-hint {
  margin: 8px 0 32px;
  padding: 14px 0;
  text-align: center;
  border: 1px dashed rgba(58, 90, 140, 0.5);
  font-size: 13px;
  color: var(--c-dim);
}

/* ===== 03 公告与通知 ===== */
.page-news .news-bulletin {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 56px 0 64px;
}

.page-news .news-bulletin .section-head__title {
  color: var(--c-ink);
}

.page-news .news-bulletin .section-head__note {
  color: var(--c-soft);
}

.page-news .bulletin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.page-news .bulletin-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid rgba(26, 43, 60, 0.08);
  clip-path: var(--clip-corner);
  box-shadow: 0 4px 18px rgba(8, 16, 32, 0.06);
  padding: 26px 22px 22px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-news .bulletin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(8, 16, 32, 0.1);
}

.page-news .bulletin-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--c-orange);
}

.page-news .bulletin-card__date {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-news .bulletin-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--c-ink);
}

.page-news .bulletin-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-soft);
}

.page-news .bulletin-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-orange);
}

/* ===== 04 专题策划 ===== */
.page-news .news-feature {
  background: var(--c-deep);
  padding: 56px 0 64px;
}

.page-news .news-feature .section-head__title {
  color: var(--c-white);
}

.page-news .news-feature .section-head__note {
  color: var(--c-dim);
}

.page-news .feature-banner {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--news-panel-border);
  clip-path: var(--clip-corner);
}

.page-news .feature-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

.page-news .feature-card {
  position: relative;
  background: var(--news-card-bg);
  border: 1px solid var(--news-panel-border);
  clip-path: var(--clip-corner);
  padding: 26px 22px 22px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.page-news .feature-card:hover {
  background: rgba(30, 58, 138, 0.82);
  transform: translateY(-3px);
}

.page-news .feature-card__index {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 12px;
  background: rgba(200, 255, 0, 0.14);
  border-left: 2px solid var(--c-lime);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-lime);
}

.page-news .feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--c-white);
}

.page-news .feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-dim);
}

/* ===== 05 更新日历 ===== */
.page-news .news-schedule {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 56px 0 48px;
}

.page-news .news-schedule .section-head__title {
  color: var(--c-ink);
}

.page-news .news-schedule .section-head__note {
  color: var(--c-soft);
}

.page-news .schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 28px;
}

.page-news .schedule-media {
  overflow: hidden;
  border: 1px solid rgba(26, 43, 60, 0.1);
  clip-path: var(--clip-corner);
  box-shadow: 0 4px 18px rgba(8, 16, 32, 0.06);
}

.page-news .schedule-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.page-news .schedule-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255, 107, 53, 0.5);
}

.page-news .schedule-timeline li {
  position: relative;
  padding: 0 0 30px 24px;
}

.page-news .schedule-timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--c-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.16);
}

.page-news .schedule-timeline__time {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 12px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-news .schedule-timeline strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
}

.page-news .schedule-timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-soft);
}

.page-news .schedule-foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(26, 43, 60, 0.2);
  font-size: 15px;
  color: var(--c-soft);
}

.page-news .schedule-foot a {
  color: var(--c-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-news .schedule-foot a:hover {
  color: #e25a22;
}

/* ===== 响应式增强 ===== */
@media (min-width: 768px) {
  .page-news .report-item__card {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }

  .page-news .report-item__card img {
    max-height: 150px;
  }

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

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

  .page-news .schedule-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-news .news-head {
    padding: 56px 0 64px;
  }

  .page-news .news-desk {
    padding: 64px 0 16px;
  }

  .page-news .news-desk__layout {
    grid-template-columns: 280px 1fr;
    gap: 36px;
  }

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

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

  .page-news .schedule-layout {
    grid-template-columns: 44% 56%;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .report-item__card,
  .page-news .bulletin-card,
  .page-news .feature-card {
    transition: none;
    transform: none;
  }

  .page-news .filter-card__list li,
  .page-news .filter-card__tags span,
  .page-news .feed-tabs span {
    transition: none;
  }
}
