.page-news {
  --news-shadow: 0 1px 0 rgba(140, 154, 166, .14), 0 14px 30px rgba(5, 9, 15, .48);
  --news-radius: 0;
}

/* ===== 区块纵向节奏 ===== */
.page-news .band {
  padding-top: clamp(44px, 6vw, 92px);
  padding-bottom: clamp(44px, 6vw, 92px);
}

.page-news .band__head {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.page-news h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -.012em;
  margin: 8px 0 0;
  color: var(--chalk);
  max-width: 22ch;
}

.page-news .band--chalk h2 {
  color: var(--ink);
}

/* ===== 面包屑 ===== */
.page-news .crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--slate);
  margin-bottom: clamp(18px, 3vw, 34px);
}

.page-news .crumb a {
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) ease, border-color var(--t) ease;
}

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

.page-news .crumb .crumb__sep {
  color: rgba(140, 154, 166, .5);
}

.page-news .crumb > span:last-child {
  color: var(--chalk);
}

/* ===== 首屏 ===== */
.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.page-news .news-hero__copy h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 7.2vw, 66px);
  line-height: 1.03;
  letter-spacing: -.012em;
  margin: 12px 0 18px;
  color: var(--chalk);
  max-width: 19ch;
}

.page-news .news-hero__copy .lead {
  max-width: 60ch;
  margin: 0;
  color: var(--slate);
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.76;
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .news-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .news-hero__stats .stat {
  background: var(--ink);
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero__stats .stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--slate);
  opacity: .35;
}

.page-news .news-hero__stats .stat:has(.stat__num--corner)::before { background: var(--corner); opacity: 1; }
.page-news .news-hero__stats .stat:has(.stat__num--possess)::before { background: var(--possess); opacity: 1; }

.page-news .stat__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1;
  color: var(--chalk);
}

.page-news .stat__num--corner { color: var(--corner); }
.page-news .stat__num--possess { color: var(--possess); }

.page-news .stat__unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: .04em;
}

.page-news .stat__label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--slate);
  margin-top: 4px;
}

.page-news .news-hero__figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.page-news .news-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-news .frame__cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
}

/* ===== 本周更新 ===== */
.page-news .news-week {
  position: relative;
}

.page-news .news-week__note {
  margin: 0 0 clamp(20px, 2.6vw, 32px);
  max-width: 58ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
}

.page-news .news-week__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 32px);
}

.page-news .news-cols {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.page-news .news-col {
  background: var(--night);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background var(--t-fast) ease, box-shadow var(--t) ease;
}

.page-news .news-col:hover {
  background: var(--ink);
  box-shadow: inset 3px 0 0 var(--turf);
}

.page-news .news-col__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--turf);
}

.page-news .news-col__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--chalk);
  letter-spacing: .02em;
}

.page-news .news-stream {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .news-entry {
  background: var(--night);
  padding: clamp(18px, 2.4vw, 26px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--t) ease;
}

.page-news .news-entry:hover {
  background: var(--ink);
}

.page-news .news-entry::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 32px;
  height: 1px;
  background: var(--slate);
  opacity: .55;
  transform: rotate(-45deg);
  transform-origin: right center;
  transition: background var(--t) ease, width var(--t) ease, opacity var(--t) ease;
}

.page-news .news-entry:hover::after,
.page-news .news-entry:focus-within::after {
  background: var(--turf);
  width: 44px;
  opacity: 1;
}

.page-news .news-entry__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-entry__time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--slate);
  border: 1px solid var(--line);
  padding: 2px 7px;
  line-height: 1.6;
}

.page-news .news-entry__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.24;
  letter-spacing: -.005em;
}

.page-news .news-entry--lead .news-entry__title {
  font-size: clamp(22px, 3vw, 32px);
  max-width: 24ch;
}

.page-news .news-entry__title .link {
  color: var(--chalk);
  text-decoration: none;
  background-image: linear-gradient(var(--turf), var(--turf));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size var(--t) ease, color var(--t-fast) ease;
}

.page-news .news-entry__title .link:hover,
.page-news .news-entry__title .link:focus-visible {
  background-size: 100% 1px;
  color: var(--turf);
}

.page-news .news-entry__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--slate);
  max-width: 62ch;
}

.page-news .news-spark {
  display: block;
  width: 100%;
  max-width: 170px;
  height: 34px;
  margin-top: auto;
}

/* ===== 战术板 ===== */
.page-news .news-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.page-news .news-board__figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.page-news .news-board__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-board__copy p {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--slate);
}

.page-news .news-board__copy p:first-child {
  color: var(--chalk);
  font-size: clamp(16px, 1.7vw, 18px);
}

.page-news .news-board__copy p:last-child {
  margin-bottom: 0;
}

.page-news .news-scale {
  list-style: none;
  margin: clamp(26px, 3.4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-news .news-scale__item {
  background: var(--ink);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 14px;
  position: relative;
}

.page-news .news-scale__key {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--chalk);
}

.page-news .news-scale__val {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
  text-align: right;
}

.page-news .news-scale__bar {
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 8px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.page-news .news-scale__bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
}

.page-news .news-scale__bar--corner::before { background: var(--corner); width: 72%; }
.page-news .news-scale__bar--possess::before { background: var(--possess); width: 62%; }
.page-news .news-scale__bar--turf::before { background: var(--turf); width: 84%; }

/* ===== 转会窗（亮面板） ===== */
.page-news .news-window .band__head .eyebrow,
.page-news .news-yearbook .band__head .eyebrow {
  color: var(--turf-deep);
}

.page-news .news-window__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.page-news .news-window__figure {
  margin: 0;
  order: -1;
  border: 1px solid rgba(11, 26, 43, .18);
  overflow: hidden;
  position: relative;
}

.page-news .news-window__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-window__copy p {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--night);
}

.page-news .news-window__copy p:first-child {
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--ink);
}

.page-news .news-window__copy p:last-child {
  margin-bottom: 0;
}

/* ===== 城市看台 ===== */
.page-news .news-city__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.page-news .news-city__figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.page-news .news-city__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-city__copy p {
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--slate);
}

.page-news .news-city__copy p:first-child {
  color: var(--chalk);
  font-size: clamp(16px, 1.7vw, 18px);
}

.page-news .news-city__link {
  color: var(--turf);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 191, 107, .45);
  padding-bottom: 2px;
  transition: border-color var(--t) ease, color var(--t-fast) ease;
}

.page-news .news-city__link:hover,
.page-news .news-city__link:focus-visible {
  border-bottom-color: var(--turf);
  color: var(--mist);
}

/* ===== 订阅答疑 ===== */
.page-news .news-qa__list {
  border-top: 1px solid var(--line);
  max-width: 100%;
}

.page-news .news-qa__item {
  border-bottom: 1px solid var(--line);
}

.page-news .news-qa__q {
  cursor: pointer;
  list-style: none;
  padding: 18px 44px 18px 0;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--chalk);
  position: relative;
  transition: color var(--t-fast) ease;
}

.page-news .news-qa__q::-webkit-details-marker { display: none; }
.page-news .news-qa__q::marker { content: ""; }

.page-news .news-qa__q::before,
.page-news .news-qa__q::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--turf);
  transition: transform var(--t) ease, opacity var(--t) ease;
}

.page-news .news-qa__q::before {
  transform: translateY(-50%) rotate(90deg);
}

.page-news .news-qa__q::after {
  transform: translateY(-50%);
}

.page-news .news-qa__item[open] .news-qa__q::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.page-news .news-qa__q:hover,
.page-news .news-qa__q:focus-visible {
  color: var(--turf);
}

.page-news .news-qa__a {
  padding: 0 44px 20px 0;
}

.page-news .news-qa__a p {
  margin: 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--slate);
}

.page-news .news-qa__cta {
  margin-top: clamp(26px, 3.2vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-news .news-qa__cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 46ch;
}

/* ===== 赛季专题与年鉴 ===== */
.page-news .news-yearbook__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}

.page-news .news-yearbook__copy p {
  margin: 0 0 18px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--night);
}

.page-news .news-yearbook__copy p:first-child {
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 19px);
}

.page-news .news-yearbook__link {
  color: var(--turf-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 122, 69, .4);
  padding-bottom: 2px;
  transition: border-color var(--t) ease;
}

.page-news .news-yearbook__link:hover,
.page-news .news-yearbook__link:focus-visible {
  border-bottom-color: var(--turf-deep);
}

.page-news .news-yearbook .panel {
  background: var(--ink);
  border: 1px solid rgba(11, 26, 43, .16);
  box-shadow: var(--news-shadow);
}

.page-news .news-yearbook .panel__title {
  color: var(--chalk);
}

.page-news .news-yearbook .panel__meta {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--corner);
}

.page-news .news-progress {
  display: block;
  height: 6px;
  width: 100%;
  background: rgba(140, 154, 166, .2);
  position: relative;
  overflow: hidden;
}

.page-news .news-progress__fill {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--turf-deep), var(--turf));
}

.page-news .news-yearbook__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.page-news .news-yearbook__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-news .news-yearbook__k {
  font-size: 14px;
  font-weight: 600;
  color: var(--chalk);
}

.page-news .news-yearbook__v {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--slate);
}

.page-news .news-yearbook__btn {
  margin-top: 22px;
}

/* ===== 响应式 ===== */
@media (min-width: 640px) {
  .page-news .news-stream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-entry--lead {
    grid-column: 1 / -1;
  }

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

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(28px, 3.6vw, 56px);
  }

  .page-news .news-week__body {
    grid-template-columns: 196px minmax(0, 1fr);
    gap: clamp(24px, 3vw, 44px);
  }

  .page-news .news-cols {
    flex-direction: column;
    overflow: visible;
    position: sticky;
    top: 24px;
    align-self: start;
  }

  .page-news .news-col {
    width: 100%;
  }

  .page-news .news-board__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .page-news .news-window__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  }

  .page-news .news-window__figure {
    order: 2;
  }

  .page-news .news-city__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .page-news .news-yearbook__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(30px, 4vw, 64px);
  }
}

@media (min-width: 1280px) {
  .page-news .news-stream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-entry--lead .news-entry__text {
    font-size: 15px;
    max-width: 68ch;
  }
}

@media (max-width: 480px) {
  .page-news .news-hero__stats {
    grid-template-columns: 1fr;
  }

  .page-news .news-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
