.page-news {
  --news-gap-lg: 32px;
  --news-gap-md: 20px;
  --news-gap-sm: 12px;
  --news-card-radius: 0;
  --news-accent-line: linear-gradient(135deg, var(--c-neon) 0%, var(--c-purple) 100%);
  color: var(--c-white);
  background: var(--c-black);
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.7;
}

/* ===== 面包屑 ===== */
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-silver);
}

.page-news .breadcrumb a {
  color: var(--c-silver);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}

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

.page-news .breadcrumb__sep {
  color: var(--c-rock);
}

.page-news .breadcrumb__current {
  color: var(--c-neon);
}

/* ===== 英雄区 ===== */
.page-news .news-hero {
  position: relative;
  padding: 148px 0 56px;
  background:
    radial-gradient(circle at 85% 20%, var(--c-purple-soft) 0%, transparent 42%),
    linear-gradient(180deg, var(--c-black) 0%, var(--c-ink) 100%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--c-rock-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-rock-light) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 20%, #000 100%);
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-news .news-hero__title-block {
  max-width: 900px;
}

.page-news .news-hero .mono-label {
  margin-bottom: 16px;
  color: var(--c-neon);
}

.page-news .news-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.22;
  letter-spacing: .01em;
  text-wrap: balance;
}

.page-news .news-hero__lead {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  color: var(--c-silver);
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.page-news .news-hero__stat {
  padding: 18px 16px;
  background: var(--c-ink);
  border: 1px solid var(--c-rock);
  border-left: 3px solid var(--c-neon);
}

.page-news .news-hero__stat dt {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.page-news .news-hero__stat dd {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-white);
}

/* ===== 章节通用 ===== */
.page-news .section-block {
  padding: 64px 0;
}

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.page-news .section-head .section-index {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-neon);
  opacity: .65;
}

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

.page-news .section-head .mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-neon);
  letter-spacing: .18em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.page-news .section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.2;
}

.page-news .section-head__note {
  align-self: flex-end;
  max-width: 260px;
  font-size: 13px;
  color: var(--c-silver);
  text-align: right;
  border-right: 2px solid var(--c-purple);
  padding-right: 12px;
}

/* ===== 为你推荐：非均匀卡片流 ===== */
.page-news .news-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .news-card {
  position: relative;
  background: var(--c-ink);
  border: 1px solid var(--c-rock);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.page-news .news-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-neon-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--news-accent-line);
  transition: width .4s var(--ease-out);
  z-index: 2;
}

.page-news .news-card:hover::before {
  width: 100%;
}

.page-news .news-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c-black);
}

.page-news .news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}

.page-news .news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.page-news .news-card__duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  background: rgba(10, 10, 14, .82);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-neon);
  border: 1px solid var(--c-neon-line);
  backdrop-filter: blur(4px);
}

.page-news .news-card__body {
  padding: 20px 20px 24px;
}

.page-news .news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
}

.page-news .news-card__index {
  color: var(--c-purple);
  letter-spacing: .08em;
}

.page-news .news-card__views {
  color: var(--c-silver);
}

.page-news .news-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.page-news .news-card__summary {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--c-silver);
}

.page-news .news-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.page-news .news-card__category {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
}

.page-news .news-card__more {
  margin-top: 16px;
  border-top: 1px dashed var(--c-rock);
  padding-top: 12px;
  font-size: 14px;
  color: var(--c-silver);
}

.page-news .news-card__more summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-neon);
  list-style: none;
}

.page-news .news-card__more summary::before {
  content: "+ ";
}

.page-news .news-card__more[open] summary::before {
  content: "− ";
}

.page-news .news-card__more p {
  margin: 10px 0 0;
  font-size: 13px;
}

/* ===== 战报头条 ===== */
.page-news .news-reports {
  background: linear-gradient(180deg, var(--c-black) 0%, var(--c-ink) 100%);
}

.page-news .news-reports .section-head__note {
  border-right-color: var(--c-neon);
}

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

.page-news .news-reports__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-rock);
}

.page-news .report-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-rock);
  transition: background .25s var(--ease-out), padding-left .25s var(--ease-out);
}

.page-news .report-item:hover {
  background: var(--c-purple-soft);
  padding-left: 12px;
}

.page-news .report-item__score {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-neon);
  background: var(--c-black);
  border: 1px solid var(--c-rock);
  text-align: center;
  padding: 6px 0;
}

.page-news .report-item__info h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-news .report-item__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
}

.page-news .report-item__views {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
  white-space: nowrap;
}

.page-news .news-reports__more {
  margin-top: 20px;
  border: 1px dashed var(--c-rock);
  background: var(--c-black);
}

.page-news .news-reports__more summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-neon);
  list-style: none;
  text-align: center;
  letter-spacing: .08em;
  transition: background .2s var(--ease-out);
}

.page-news .news-reports__more summary:hover {
  background: var(--c-neon-soft);
}

.page-news .news-reports__more summary::before {
  content: "↧ ";
}

.page-news .news-reports__more[open] summary::before {
  content: "↥ ";
}

.page-news .news-reports__more-inner {
  padding: 0 20px 20px;
  border-top: 1px solid var(--c-rock);
}

.page-news .news-reports__more-inner .report-item:first-child {
  margin-top: 0;
}

.page-news .news-reports__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-reports__aside-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--c-rock);
}

.page-news .news-reports__aside-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, var(--c-black));
  pointer-events: none;
}

.page-news .news-reports__aside-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-reports__aside-note {
  padding: 20px;
  background: var(--c-black);
  border: 1px solid var(--c-purple-line);
  position: relative;
}

.page-news .news-reports__aside-note::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--c-purple) transparent transparent;
}

.page-news .news-reports__aside-note .mono-label {
  color: var(--c-purple);
  margin-bottom: 8px;
}

.page-news .news-reports__aside-note p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--c-silver);
}

/* ===== 集锦精选 ===== */
.page-news .news-highlights {
  background:
    linear-gradient(135deg, transparent 60%, var(--c-purple-soft) 100%),
    var(--c-black);
}

.page-news .highlight-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-news .highlight-filter__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-news .highlight-filter__label {
  padding: 7px 16px;
  border: 1px solid var(--c-rock);
  background: var(--c-ink);
  color: var(--c-silver);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  user-select: none;
}

.page-news .highlight-filter__label:hover {
  border-color: var(--c-neon-line);
  color: var(--c-neon);
}

.page-news .highlight-filter__input:checked + .highlight-filter__label {
  background: var(--c-neon);
  border-color: var(--c-neon);
  color: var(--c-black);
  font-weight: 700;
}

.page-news #hl-football:checked ~ .highlight-grid .highlight-card[data-cat]:not([data-cat="football"]),
.page-news #hl-basketball:checked ~ .highlight-grid .highlight-card[data-cat]:not([data-cat="basketball"]),
.page-news #hl-esports:checked ~ .highlight-grid .highlight-card[data-cat]:not([data-cat="esports"]) {
  display: none;
}

.page-news .highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.page-news .highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 20px;
  background:
    linear-gradient(135deg, var(--c-ink) 0%, #1C2028 100%);
  border: 1px solid var(--c-rock);
  border-top: 3px solid var(--c-purple);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
  outline: none;
}

.page-news .highlight-card:hover,
.page-news .highlight-card:focus-visible {
  transform: translateY(-4px) rotate(-.4deg);
  border-top-color: var(--c-neon);
  border-color: var(--c-neon-line);
}

.page-news .highlight-card--wide {
  grid-column: span 2;
}

.page-news .highlight-card__time {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, .75);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-neon);
  border: 1px solid var(--c-neon-line);
}

.page-news .highlight-card::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -6px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--c-neon) 50%, transparent 50%);
  opacity: .25;
  transition: opacity .3s var(--ease-out);
}

.page-news .highlight-card:hover::before {
  opacity: .8;
}

.page-news .highlight-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.page-news .highlight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
}

.page-news .highlight-card__meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--c-rock);
}

/* ===== 专题系列 ===== */
.page-news .news-topics {
  background: var(--c-black);
}

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

.page-news .topic-card {
  border: 1px solid var(--c-rock);
  background: var(--c-ink);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.page-news .topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
}

.page-news .topic-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.page-news .topic-card__ep {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 14px;
  background: var(--c-purple);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

.page-news .topic-card__body {
  padding: 22px;
}

.page-news .topic-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
}

.page-news .topic-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--c-silver);
}

.page-news .topic-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-rock);
}

.page-news .topic-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-rock);
  transition: background .25s var(--ease-out), padding-left .25s var(--ease-out);
}

.page-news .topic-item:hover {
  background: var(--c-neon-soft);
  padding-left: 8px;
}

.page-news .topic-item__no {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-purple);
  letter-spacing: .05em;
}

.page-news .topic-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.page-news .topic-item p {
  margin: 0;
  font-size: 13px;
  color: var(--c-silver);
  line-height: 1.6;
}

.page-news .topic-item .tag {
  white-space: nowrap;
}

/* ===== 更新简报 ===== */
.page-news .news-briefing {
  background:
    radial-gradient(circle at 10% 30%, var(--c-neon-soft) 0%, transparent 30%),
    var(--c-ink);
}

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

.page-news .briefing-card {
  position: relative;
  padding: 22px;
  background: var(--c-black);
  border: 1px solid var(--c-rock);
  overflow: hidden;
}

.page-news .briefing-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, transparent 50%, var(--c-purple-soft) 50%);
}

.page-news .briefing-card__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-neon);
  margin-bottom: 12px;
}

.page-news .briefing-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.page-news .briefing-card p {
  margin: 0;
  font-size: 13px;
  color: var(--c-silver);
}

.page-news .news-briefing__note {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 24px;
  background:
    linear-gradient(135deg, var(--c-purple-soft) 0%, transparent 60%),
    var(--c-black);
  border-left: 4px solid var(--c-clay);
}

.page-news .news-briefing__note p {
  margin: 0;
  font-size: 14px;
  color: var(--c-silver);
  line-height: 1.8;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s var(--ease-out);
  border: 1px solid var(--c-rock);
}

.page-news .btn--primary {
  align-self: flex-start;
  background: var(--c-neon);
  border-color: var(--c-neon);
  color: var(--c-black);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-news .btn--primary:hover {
  background: var(--c-white);
  border-color: var(--c-white);
  transform: translateX(4px);
}

.page-news .btn--ghost {
  background: transparent;
  border-color: var(--c-purple-line);
  color: var(--c-white);
}

.page-news .btn--ghost:hover {
  background: var(--c-purple-soft);
  border-color: var(--c-purple);
}

/* ===== 容器修正 ===== */
.page-news .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===== ≥ 768px 平板/桌面 ===== */
@media (min-width: 768px) {
  .page-news .news-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }

  .page-news .news-hero__stats {
    min-width: 340px;
    flex-shrink: 0;
  }

  .page-news .section-block {
    padding: 96px 0;
  }

  .page-news .news-masonry {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 24px;
  }

  .page-news .news-card--feature {
    grid-column: span 7;
    grid-row: span 2;
  }

  .page-news .news-card--feature .news-card__media {
    aspect-ratio: 16 / 9;
  }

  .page-news .news-card--feature h3 {
    font-size: 24px;
  }

  .page-news .news-card:nth-child(2) {
    grid-column: span 5;
  }

  .page-news .news-card:nth-child(3) {
    grid-column: span 5;
    margin-top: 20px;
    margin-right: 8%;
  }

  .page-news .news-card:nth-child(4) {
    grid-column: span 7;
    margin-top: -48px;
    margin-left: 6%;
  }

  .page-news .news-reports__layout {
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
  }

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

  .page-news .news-topics__layout {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }

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

  .page-news .news-briefing__note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .news-briefing__note p {
    max-width: 760px;
  }
}

/* ===== ≥ 1200px 微调 ===== */
@media (min-width: 1200px) {
  .page-news .news-recommend .container,
  .page-news .news-reports .container,
  .page-news .news-highlights .container,
  .page-news .news-topics .container,
  .page-news .news-briefing .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-news .section-head__note {
    max-width: 320px;
  }

  .page-news .highlight-card {
    min-height: 180px;
  }
}
