.page-news {
  --news-num-w: 56px;
  --news-tint: rgba(233, 242, 239, .035);
  background: var(--bg);
  color: var(--text);
}

.page-news .breadcrumbs {
  padding-top: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(12px, 2vw, 20px);
}

/* ============ 首屏 ============ */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-sunk);
  border-bottom: 2px solid var(--rule-strong);
}

.page-news .news-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.4) contrast(1.08) brightness(.85);
}

.page-news .news-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 26, .55) 0%, rgba(5, 12, 26, .88) 66%, var(--bg-sunk) 100%),
    linear-gradient(90deg, rgba(5, 12, 26, .9) 0%, rgba(5, 12, 26, .18) 68%);
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 8vw, 104px);
  padding-bottom: clamp(40px, 6vw, 76px);
}

.page-news .news-hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 8.4vw, 96px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 14em;
}

.page-news .news-hero__lede {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  max-width: 34em;
  color: var(--text-dim);
}

.page-news .news-hero__counts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.page-news .news-hero__count dt {
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.page-news .news-hero__count dd {
  margin: 8px 0 0;
  font-size: var(--fs-2);
  letter-spacing: .02em;
  color: var(--text-dim);
}

.page-news .news-hero__count dd .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-5);
  font-weight: 300;
  color: var(--accent);
  margin-right: 6px;
}

/* ============ 栏目筛选 ============ */
.page-news .news-tabs {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--rule-strong);
}

.page-news .news-tabs__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 6px;
  padding-bottom: 6px;
}

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

.page-news .news-tabs__label {
  flex: 0 0 auto;
  margin-right: 14px;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
}

.page-news .news-tabs__tab {
  flex: 0 0 auto;
  display: inline-block;
  padding: 12px 16px;
  font-size: var(--fs-2);
  letter-spacing: .1em;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.page-news .news-tabs__tab:hover,
.page-news .news-tabs__tab:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============ 栏目标题区 ============ */
.page-news .news-series {
  padding-top: clamp(44px, 7vw, 88px);
  padding-bottom: clamp(44px, 7vw, 88px);
  border-bottom: 2px solid var(--rule-strong);
}

.page-news .news-series--wine {
  background: linear-gradient(180deg, rgba(92, 30, 51, .42) 0%, rgba(92, 30, 51, .1) 100%);
}

.page-news .news-series--indigo {
  background: linear-gradient(180deg, rgba(36, 26, 70, .58) 0%, rgba(36, 26, 70, .16) 100%);
}

.page-news .news-series__intro {
  margin: 0 0 clamp(26px, 4vw, 44px);
  max-width: 34em;
  font-size: var(--fs-3);
  line-height: 1.85;
  color: var(--text-dim);
}

/* ============ 索引列表 ============ */
.page-news .news-index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.page-news .news-index__item {
  display: grid;
  grid-template-columns: var(--news-num-w) minmax(0, 1fr);
  column-gap: clamp(12px, 2vw, 24px);
  row-gap: 14px;
  padding: clamp(20px, 3vw, 30px) 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .18s ease;
}

.page-news .news-index__item:hover {
  background: rgba(53, 224, 208, .05);
}

.page-news .news-index__num {
  font-family: var(--font-mono);
  font-size: var(--fs-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--accent);
  padding-top: 3px;
}

.page-news .news-index__body {
  min-width: 0;
}

.page-news .news-index__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--fs-4);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--text);
}

.page-news .news-index__sum {
  margin: 0 0 12px;
  max-width: 34em;
  font-size: var(--fs-3);
  line-height: 1.85;
  color: var(--text-dim);
}

.page-news .news-index__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .05em;
  color: var(--steel);
}

.page-news .news-index__aside {
  grid-column: 2;
}

.page-news .news-spark {
  display: block;
  width: 108px;
  height: 40px;
  color: var(--mint);
  opacity: .9;
  transition: color .18s ease, opacity .18s ease;
}

.page-news .news-index__item:hover .news-spark {
  color: var(--accent);
  opacity: 1;
}

/* 带配图的专题条目 */
.page-news .news-index__item--feature .news-figure {
  grid-column: 2;
}

.page-news .news-figure {
  margin: 0;
}

.page-news .news-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--rule-strong);
  filter: saturate(.5) contrast(1.06) brightness(.88);
}

.page-news .news-figure--feature img {
  aspect-ratio: 3 / 2;
}

.page-news .news-figure--transfer {
  margin-top: clamp(28px, 4vw, 44px);
}

.page-news .news-figure--transfer img {
  aspect-ratio: 12 / 7;
}

.page-news .news-figure .media__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .05em;
  color: var(--steel);
}

/* ============ 编辑导读 ============ */
.page-news .news-note {
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: clamp(22px, 3.4vw, 40px) clamp(20px, 3vw, 44px);
  display: grid;
  gap: 12px;
  background: var(--news-tint);
  border-left: 4px solid var(--accent);
}

.page-news .news-note--wine {
  border-left-color: var(--wine);
}

.page-news .news-note--indigo {
  border-left-color: var(--indigo);
}

.page-news .news-note--grass {
  border-left-color: var(--mint);
}

.page-news .news-note__kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-news .news-note__text {
  margin: 0;
  max-width: 44em;
  font-family: var(--font-display);
  font-size: var(--fs-4);
  font-weight: 300;
  line-height: 1.62;
  color: var(--text);
}

/* ============ 转会动态密集列表 ============ */
.page-news .news-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.page-news .news-feed--cont {
  margin-top: clamp(24px, 3vw, 36px);
}

.page-news .news-feed__row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--fs-3);
  line-height: 1.7;
  transition: background-color .16s ease;
}

.page-news .news-feed__row:hover {
  background: rgba(53, 224, 208, .045);
}

.page-news .news-feed__num {
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  color: var(--steel);
}

.page-news .news-feed__league {
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-news .news-feed__text {
  color: var(--text);
}

.page-news .news-feed__time {
  font-family: var(--font-mono);
  font-size: var(--fs-1);
  letter-spacing: .05em;
  color: var(--text-dim);
}

/* ============ 数据复盘 ============ */
.page-news .news-review {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.page-news .news-review__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.page-news .news-review__item {
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
}

.page-news .news-review__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--fs-4);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
}

.page-news .news-review__sum {
  margin: 0 0 12px;
  max-width: 34em;
  font-size: var(--fs-3);
  line-height: 1.85;
  color: var(--text-dim);
}

.page-news .news-review__mods {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-review__figure img {
  aspect-ratio: 3 / 2;
}

/* ============ 订阅区 ============ */
.page-news .news-subscribe {
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 88px);
}

.page-news .news-subscribe__inner {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 4vw, 48px);
  border: 2px solid var(--rule-strong);
  background: linear-gradient(135deg, rgba(11, 58, 43, .72) 0%, rgba(7, 18, 39, .94) 100%);
  box-shadow: var(--shadow-hard);
}

.page-news .news-subscribe__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: var(--fs-5);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-news .news-subscribe__text {
  margin: 14px 0 0;
  max-width: 34em;
  font-size: var(--fs-3);
  line-height: 1.85;
  color: var(--text-dim);
}

.page-news .news-sub {
  align-self: start;
  border: 2px solid var(--accent);
  min-width: 220px;
}

.page-news .news-sub__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: var(--fs-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
}

.page-news .news-sub__summary::-webkit-details-marker {
  display: none;
}

.page-news .news-sub__chev {
  display: inline-block;
  width: 14px;
  font-size: var(--fs-3);
  line-height: 1;
  transition: transform .18s ease;
}

.page-news .news-sub[open] .news-sub__chev {
  transform: rotate(45deg);
}

.page-news .news-sub__panel {
  display: grid;
  border-top: 1px solid rgba(53, 224, 208, .35);
}

.page-news .news-sub__link {
  padding: 12px 18px;
  font-size: var(--fs-2);
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(53, 224, 208, .16);
  transition: color .16s ease, background-color .16s ease;
}

.page-news .news-sub__link:last-child {
  border-bottom: 0;
}

.page-news .news-sub__link:hover,
.page-news .news-sub__link:focus-visible {
  color: var(--navy);
  background: var(--accent);
}

.page-news .news-more {
  margin: clamp(26px, 4vw, 40px) 0 0;
  max-width: 46em;
  font-size: var(--fs-2);
  line-height: 1.9;
  color: var(--text-dim);
}

.page-news .news-more a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 224, 208, .4);
  transition: border-color .16s ease;
}

.page-news .news-more a:hover,
.page-news .news-more a:focus-visible {
  border-bottom-color: var(--accent);
}

/* ============ 断点 ============ */
@media (min-width: 640px) {
  .page-news {
    --news-num-w: 68px;
  }

  .page-news .news-feed__row {
    grid-template-columns: 76px 88px minmax(0, 1fr);
    column-gap: 16px;
    align-items: baseline;
  }

  .page-news .news-feed__time {
    grid-column: 3;
  }
}

@media (min-width: 880px) {
  .page-news {
    --news-num-w: 88px;
  }

  .page-news .news-index__item {
    grid-template-columns: var(--news-num-w) minmax(0, 1fr) 132px;
    align-items: start;
  }

  .page-news .news-index__aside {
    grid-column: 3;
    padding-top: 6px;
  }

  .page-news .news-index__item--feature {
    grid-template-columns: var(--news-num-w) minmax(0, 1fr) minmax(0, 320px);
    column-gap: clamp(20px, 3vw, 40px);
  }

  .page-news .news-index__item--feature .news-figure {
    grid-column: 3;
  }

  .page-news .news-review {
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    align-items: start;
  }

  .page-news .news-subscribe__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  .page-news .news-feed__row {
    grid-template-columns: 84px 96px minmax(0, 1fr) 148px;
  }

  .page-news .news-feed__time {
    grid-column: 4;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-index__item,
  .page-news .news-feed__row,
  .page-news .news-tabs__tab,
  .page-news .news-spark,
  .page-news .news-sub__chev,
  .page-news .news-more a {
    transition: none;
  }
}
