.page-news {
  --news-line: rgba(30, 58, 49, 0.75);
  --news-panel: #122019;
  --news-soft: rgba(200, 255, 77, 0.08);
  --news-gap: clamp(16px, 2.6vw, 30px);
  position: relative;
  display: block;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
}

.page-news::before,
.page-news::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, var(--rule) 0 12px, transparent 12px 26px);
  opacity: 0.7;
  pointer-events: none;
  display: none;
}

@media (min-width: 1400px) {
  .page-news::before { display: block; left: calc(50% - 645px); }
  .page-news::after { display: block; right: calc(50% - 645px); }
}

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

.page-news .news-hero {
  position: relative;
  padding: clamp(24px, 4.6vw, 54px) 0 clamp(30px, 5vw, 62px);
  border-bottom: 1px solid var(--news-line);
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 86% 12%, rgba(200, 255, 77, 0.14), transparent 44%),
    repeating-linear-gradient(90deg, rgba(30, 58, 49, 0.5) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -46%;
  width: clamp(200px, 40vw, 440px);
  height: clamp(200px, 40vw, 440px);
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 77, 0.16);
  pointer-events: none;
}

.page-news .news-hero .bw-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(18px, 3vw, 34px);
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: end;
  }
}

.page-news .news-hero__title {
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-wrap: balance;
}

.page-news .news-hero__hl {
  color: var(--lime);
  display: inline;
}

.page-news .news-hero__lede {
  max-width: 46ch;
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
  color: var(--text);
}

.page-news .news-hero__aside {
  padding-top: clamp(16px, 2.4vw, 22px);
  border-top: 1px solid var(--news-line);
}

@media (min-width: 900px) {
  .page-news .news-hero__aside {
    border-top: 0;
    border-left: 1px solid var(--news-line);
    padding-top: 0;
    padding-left: clamp(16px, 2.2vw, 32px);
  }
}

.page-news .news-hero__aside-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-news .news-hero__toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-hero__toc li + li {
  border-top: 1px solid var(--news-line);
}

.page-news .news-hero__toc a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}

.page-news .news-hero__toc a:hover,
.page-news .news-hero__toc a:focus-visible {
  color: var(--lime);
  padding-left: 6px;
}

.page-news .news-hero__toc-no {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}

/* ---------- 章节条 ---------- */

.page-news .bw-chapter {
  background: rgba(16, 19, 20, 0.92);
  border-bottom: 1px solid var(--news-line);
}

.page-news .bw-chapter .bw-container {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .bw-chapter .bw-container::-webkit-scrollbar {
  display: none;
}

.page-news .bw-chapter__link {
  flex: 0 0 auto;
  padding: 15px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-news .bw-chapter__link:hover,
.page-news .bw-chapter__link:focus-visible {
  color: var(--paper);
}

.page-news .bw-chapter__link[aria-current="true"] {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* ---------- 本轮复盘 ---------- */

.page-news .news-rounds__head {
  max-width: 62ch;
}

.page-news .news-rounds__figure {
  margin: 0 0 clamp(24px, 3.6vw, 44px);
}

.page-news .news-rounds__figure img,
.page-news .news-transfers__figure img,
.page-news .news-awards__figure img,
.page-news .news-topics__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.page-news .news-rounds__figure::after,
.page-news .news-topics__figure::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 12px;
  background-image: repeating-linear-gradient(90deg, var(--rule) 0 10px, transparent 10px 22px);
}

.page-news .news-filters {
  position: relative;
}

.page-news .news-filters__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.page-news .news-filters__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 6px 0 clamp(14px, 2vw, 20px);
  border-top: 1px solid var(--news-line);
  padding-top: 16px;
}

.page-news .news-filters__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}

.page-news .news-filters__chip {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-news .news-filters__chip:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.page-news .news-filters__radio:focus-visible + .news-filters__bar .news-filters__chip[for="lg-all"],
.page-news #lg-all:checked ~ .news-filters__bar label[for="lg-all"],
.page-news #lg-football:checked ~ .news-filters__bar label[for="lg-football"],
.page-news #lg-basketball:checked ~ .news-filters__bar label[for="lg-basketball"],
.page-news #lg-other:checked ~ .news-filters__bar label[for="lg-other"] {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.page-news .news-rounds__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-rounds__item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: clamp(12px, 2vw, 26px);
  padding: clamp(18px, 2.6vw, 28px) 0;
  border-top: 1px solid var(--news-line);
  transition: background 0.25s var(--ease);
}

@media (min-width: 900px) {
  .page-news .news-rounds__item {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}

.page-news .news-rounds__item:hover {
  background: linear-gradient(90deg, var(--news-soft), transparent 62%);
}

.page-news .news-rounds__no {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
  color: var(--rule);
  padding-top: 4px;
}

.page-news .news-rounds__item:hover .news-rounds__no {
  color: var(--lime);
}

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

.page-news .news-rounds__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-news .news-rounds__desc {
  max-width: 62ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.page-news .news-rounds__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .page-news .news-rounds__facts {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), margin-top 0.35s var(--ease);
  }

  .page-news .news-rounds__item:hover .news-rounds__facts {
    max-height: 90px;
    margin-top: 14px;
    opacity: 1;
  }
}

@media (max-width: 899px) {
  .page-news .news-rounds__facts {
    margin-top: 14px;
  }
}

.page-news .news-rounds__facts b {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--lime);
  margin-right: 3px;
}

/* ---------- 转会窗口 ---------- */

.page-news .news-transfers__head {
  max-width: 62ch;
}

.page-news .news-transfers {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.page-news .news-transfers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

@media (min-width: 900px) {
  .page-news .news-transfers__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
}

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

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

.page-news .news-timeline__item {
  position: relative;
  padding-left: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(18px, 2.6vw, 30px);
}

.page-news .news-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  background: var(--ink-2);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-news .news-timeline__item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--rule);
}

.page-news .news-timeline__item:last-child::after {
  display: none;
}

.page-news .news-timeline__item:hover::before {
  border-color: var(--lime);
}

.page-news .news-timeline__item--key::before {
  border-color: var(--red);
  background: var(--red);
}

.page-news .news-timeline__week {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.page-news .news-timeline__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  color: var(--paper);
}

.page-news .news-timeline__text {
  max-width: 56ch;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
}

/* ---------- 专题系列 ---------- */

.page-news .news-topics {
  position: relative;
  overflow: hidden;
}

.page-news .news-topics::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 16%;
  height: 58%;
  background: var(--ink-3);
  opacity: 0.5;
  transform: rotate(-2deg);
  transform-origin: center;
  pointer-events: none;
}

.page-news .news-topics::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 8%;
  width: clamp(180px, 30vw, 360px);
  height: clamp(180px, 30vw, 360px);
  border: 1px solid rgba(228, 180, 91, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-news .news-topics__head {
  max-width: 30ch;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.page-news .news-topics__title {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
}

.page-news .news-topics__lede {
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.page-news .news-topics__figure {
  margin: 0 0 clamp(24px, 3.4vw, 40px);
}

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

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

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

.page-news .news-topics__item {
  position: relative;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--ink-2);
  transition: background 0.25s var(--ease);
}

.page-news .news-topics__item:hover {
  background: var(--news-panel);
}

.page-news .news-topics__idx {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-news .news-topics__name {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.25;
  color: var(--paper);
}

.page-news .news-topics__text {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text);
}

.page-news .news-topics__cycle {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--news-line);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---------- 奖项归档 ---------- */

.page-news .news-awards__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
}

@media (min-width: 900px) {
  .page-news .news-awards__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
}

.page-news .news-awards__main h2 {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-news .news-awards__main .bw-prose {
  max-width: 58ch;
  margin: 0 0 clamp(20px, 2.8vw, 30px);
}

.page-news .news-awards__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--news-line);
  border-radius: var(--radius-sm);
}

.page-news .news-awards__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13.5px;
}

.page-news .news-awards__caption {
  caption-side: top;
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--ink-2);
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-awards__table th,
.page-news .news-awards__table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-awards__table thead th {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--ink-2);
  white-space: nowrap;
}

.page-news .news-awards__table tbody th {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.page-news .news-awards__table tbody td {
  color: var(--text);
}

.page-news .news-awards__table tbody tr:last-child th,
.page-news .news-awards__table tbody tr:last-child td {
  border-bottom: 0;
}

.page-news .news-awards__table tbody tr:hover {
  background: rgba(228, 180, 91, 0.06);
}

.page-news .news-awards__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

.page-news .news-awards__link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: clamp(18px, 2.4vw, 26px) 0 0;
}

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

/* ---------- 更新节奏 ---------- */

.page-news .news-cadence {
  background: var(--news-panel);
  border-top: 1px solid var(--news-line);
}

.page-news .news-cadence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
}

@media (min-width: 900px) {
  .page-news .news-cadence__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    align-items: start;
  }
}

.page-news .news-cadence__lead h2 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-news .news-cadence__lead .bw-prose {
  max-width: 56ch;
  margin: 0 0 16px;
}

.page-news .news-cadence__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: clamp(18px, 2.6vw, 28px) 0 0;
}

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

.page-news .news-cadence__stats li {
  padding: clamp(16px, 2.4vw, 24px);
  background: var(--ink-2);
}

.page-news .news-cadence__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-news .news-cadence__num.bw-num--gold {
  color: var(--gold);
}

.page-news .news-cadence__unit {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

.page-news .news-cadence__foot {
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid var(--news-line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 24px;
}

.page-news .news-cadence__foot-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
}

.page-news .news-cadence__foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.page-news .news-cadence__foot-links a {
  font-size: 14px;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.page-news .news-cadence__foot-links a:hover,
.page-news .news-cadence__foot-links a:focus-visible {
  border-bottom-color: var(--lime);
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-rounds__item,
  .page-news .news-rounds__facts,
  .page-news .news-rounds__no,
  .page-news .news-timeline__item::before,
  .page-news .news-topics__item,
  .page-news .news-filters__chip {
    transition: none;
  }
}
