.page-news {
  --news-side-w: 320px;
  --kind-round: #FFC61A;
  --kind-injury: #8FA6B8;
  --kind-card: #CC2B22;
  --kind-squad: #4FA07A;
  --kind-archive: #D5DEE5;
}

/* ---------- 首屏 ---------- */

.page-news .news-hero {
  padding-top: clamp(22px, 4vw, 52px);
  padding-bottom: clamp(22px, 3.5vw, 44px);
}

.page-news .news-hero__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 6.4vw, 58px);
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--paper);
  max-width: 20em;
}

.page-news .news-hero__lede {
  margin-top: 20px;
  max-width: 36em;
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--board-blue);
}

.page-news .news-hero__rule {
  margin-top: 26px;
  height: 3px;
  width: min(240px, 46%);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--card-yellow) 0 68%, var(--card-red) 68% 100%);
}

.page-news .news-hero__note {
  margin-top: 16px;
  max-width: 38em;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--line-green);
  filter: brightness(1.5);
}

/* ---------- 分类带 ---------- */

.page-news .filter-band {
  position: relative;
  overflow: hidden;
  background: var(--pitch-mid);
  border-top: 1px solid var(--line-green);
  border-bottom: 1px solid var(--line-green);
}

.page-news .filter-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .17;
  pointer-events: none;
}

.page-news .filter-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.page-news .filter-band__label {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--card-yellow);
}

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

.page-news .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-green);
  background: rgba(11, 46, 35, .55);
  color: var(--grid-grey);
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}

.page-news .filter-chip:hover,
.page-news .filter-chip:focus-visible {
  border-color: var(--card-yellow);
  color: var(--card-yellow);
  background: rgba(255, 198, 26, .09);
}

.page-news .filter-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot, var(--card-yellow));
}

/* ---------- 主体栅格 ---------- */

.page-news .news-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4.5vw, 58px);
  padding-bottom: clamp(36px, 5vw, 76px);
}

/* ---------- 分类区块 ---------- */

.page-news .cat-block {
  margin-bottom: clamp(28px, 4vw, 46px);
  scroll-margin-top: calc(var(--topbar-h) + 20px);
}

.page-news .cat-block:last-child {
  margin-bottom: 0;
}

.page-news .cat-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-green);
}

.page-news .cat-block__title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
}

.page-news .cat-block__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--board-blue);
}

.page-news .entry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- 条目 ---------- */

.page-news .entry {
  position: relative;
  padding: 14px 16px 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 111, 82, .5);
  background: var(--pitch-mid);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}

.page-news .entry:hover {
  border-color: var(--card-yellow);
  background: #164936;
}

.page-news .entry[data-kind="round"] { --kind: var(--kind-round); }
.page-news .entry[data-kind="injury"] { --kind: var(--kind-injury); }
.page-news .entry[data-kind="card"] { --kind: var(--kind-card); }
.page-news .entry[data-kind="squad"] { --kind: var(--kind-squad); }
.page-news .entry[data-kind="archive"] { --kind: var(--kind-archive); }

.page-news .entry__bar {
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 3px;
  border-radius: var(--radius-pill);
  background: var(--kind, var(--card-yellow));
}

.page-news .entry__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-news .entry__body {
  flex: 1 1 auto;
  min-width: 0;
}

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

.page-news .entry__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--board-blue);
}

.page-news .entry__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
  color: var(--paper);
}

.page-news .entry__spark {
  flex: 0 0 auto;
  width: 56px;
  height: 40px;
  color: var(--kind, var(--card-yellow));
  opacity: .82;
}

.page-news .entry__spark rect {
  fill: currentColor;
}

/* ---------- 条目内折叠摘要 ---------- */

.page-news .entry .drawer {
  margin-top: 8px;
  background: transparent;
  border: 0;
}

.page-news .entry .drawer-summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--card-yellow);
  cursor: pointer;
  list-style: none;
}

.page-news .entry .drawer-summary::-webkit-details-marker {
  display: none;
}

.page-news .entry .drawer-summary::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--card-yellow);
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}

.page-news .entry .drawer[open] .drawer-summary::before {
  background: var(--card-red);
  transform: rotate(90deg);
}

.page-news .entry .drawer-body {
  margin-top: 10px;
  padding: 14px 16px;
  border-left: 2px solid var(--line-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(11, 46, 35, .6);
}

.page-news .entry .drawer-body p {
  max-width: 36em;
  font-size: 14.5px;
  line-height: 1.92;
  color: var(--grid-grey);
}

.page-news .entry-figure {
  margin: 14px 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(46, 111, 82, .55);
}

.page-news .entry-figure img,
.page-news .list-figure img,
.page-news .side-figure img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .entry-figure img {
  aspect-ratio: 800 / 560;
}

.page-news .entry-figure figcaption {
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--board-blue);
  background: rgba(11, 46, 35, .8);
}

/* ---------- 列表内插图 ---------- */

.page-news .list-figure {
  margin: 2px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(46, 111, 82, .5);
}

.page-news .list-figure img {
  aspect-ratio: 800 / 560;
}

.page-news .list-figure figcaption {
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--board-blue);
  background: var(--pitch-mid);
}

/* ---------- 右侧专题栏 ---------- */

.page-news .news-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-news .side-card {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-green);
  background: var(--pitch-mid);
}

.page-news .side-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
}

.page-news .side-card__note {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.82;
  color: var(--board-blue);
}

.page-news .series-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-news .series-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.page-news .series-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}

.page-news .series-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--card-yellow);
}

.page-news .series-track {
  position: relative;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(246, 247, 244, .1);
  overflow: hidden;
}

.page-news .series-track__fill {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--card-yellow), #F0A31C);
  transition: width var(--t-mid) var(--ease),
              filter var(--t-fast) var(--ease);
}

.page-news .series-item:hover .series-track__fill {
  filter: brightness(1.18);
}

.page-news .series-item__latest {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--board-blue);
}

.page-news .side-card__cta {
  margin-top: 20px;
}

.page-news .side-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-green);
  overflow: hidden;
}

.page-news .side-figure img {
  aspect-ratio: 800 / 560;
}

.page-news .side-figure figcaption {
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--board-blue);
  background: var(--pitch-mid);
}

/* ---------- 引用数据区 ---------- */

.page-news .news-sources {
  padding-top: clamp(30px, 5vw, 64px);
  padding-bottom: clamp(30px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(18, 64, 47, 0) 0%, rgba(18, 64, 47, .55) 42%, rgba(18, 64, 47, 0) 100%);
}

.page-news .source-panel {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
}

.page-news .eyebrow--dark {
  color: #8A6A00;
}

.page-news .source-panel__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: .05em;
  color: var(--ink);
}

.page-news .source-panel__lede {
  margin-top: 12px;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.9;
  color: #3A4A42;
}

.page-news .source-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-news .source-item {
  padding-left: 15px;
  border-left: 3px solid var(--card-yellow);
}

.page-news .source-item--blue {
  border-left-color: #6E8DA8;
}

.page-news .source-item--red {
  border-left-color: var(--card-red);
}

.page-news .source-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--ink);
}

.page-news .source-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.85;
  color: #3A4A42;
}

.page-news .source-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-news .source-panel__foot .btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.page-news .source-panel__foot .btn--outline:hover {
  border-color: var(--card-red);
  color: var(--card-red);
}

/* ---------- 订阅区 ---------- */

.page-news .news-subscribe {
  padding-bottom: clamp(46px, 7vw, 96px);
}

.page-news .subscribe-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-green);
  background: linear-gradient(118deg, var(--pitch-mid) 0%, #1A5039 58%, var(--pitch-mid) 100%);
}

.page-news .subscribe-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255, 198, 26, .22);
  pointer-events: none;
}

.page-news .subscribe-panel__text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  letter-spacing: .06em;
  color: var(--paper);
}

.page-news .subscribe-panel__text p {
  margin-top: 14px;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.9;
  color: var(--grid-grey);
}

.page-news .subscribe-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

/* ---------- 响应式 ---------- */

@media (min-width: 620px) {
  .page-news .entry__spark {
    width: 68px;
    height: 46px;
  }

  .page-news .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 34px;
  }
}

@media (min-width: 860px) {
  .page-news .subscribe-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1000px) {
  .page-news .news-body {
    grid-template-columns: minmax(0, 1fr) var(--news-side-w);
    align-items: start;
  }

  .page-news .news-side {
    position: sticky;
    top: calc(var(--topbar-h) + 24px);
  }

  .page-news .source-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-news .entry__spark {
    display: none;
  }

  .page-news .entry {
    padding: 13px 14px 13px 18px;
  }

  .page-news .entry__title {
    font-size: 15px;
  }

  .page-news .filter-band__inner {
    gap: 10px;
  }
}

.page-news {
  --dot: transparent;
  --fill: currentColor;
}
