.page-news {
  background: var(--bone);
  color: var(--ink);
  overflow-x: clip;
}

.page-news .kicker {
  margin: 0 0 6px;
}

/* ---------- 首屏 ---------- */
.page-news .news-open {
  padding: 26px 0 0;
}

.page-news .news-open__grid {
  display: grid;
  gap: 26px;
}

.page-news .news-open__main .display-1 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 6.6vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.page-news .news-open__main .lede {
  max-width: 33em;
  margin: 0;
  color: rgba(14, 13, 12, 0.78);
}

.page-news .news-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(14, 13, 12, 0.14);
  border: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-stats__cell {
  background: var(--paper);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-stats__num {
  font-family: var(--font-num);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--danxia);
}

.page-news .news-stats__label {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(14, 13, 12, 0.66);
}

/* ---------- 最新轮次提示带 ---------- */
.page-news .news-ticker {
  margin-top: 30px;
  background: var(--dust);
  border-top: var(--line);
  border-bottom: var(--line);
}

.page-news .news-ticker__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding-top: 11px;
  padding-bottom: 11px;
  scrollbar-width: thin;
}

.page-news .news-ticker__lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-news .news-ticker__item {
  white-space: nowrap;
  font-size: 13px;
  color: rgba(14, 13, 12, 0.72);
  padding-left: 22px;
  border-left: 1px solid rgba(14, 13, 12, 0.16);
}

/* ---------- 主壳与分类栏 ---------- */
.page-news .news-shell {
  display: grid;
  gap: 30px;
  padding-top: 36px;
  padding-bottom: 64px;
  min-width: 0;
}

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

.page-news .news-rail__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--grit);
}

.page-news .news-rail__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-news .news-rail__link {
  display: block;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(14, 13, 12, 0.14);
  border-radius: var(--radius);
  background: transparent;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.page-news .news-rail__link:hover,
.page-news .news-rail__link:focus-visible {
  color: var(--danxia);
  border-color: var(--danxia);
  background: var(--paper);
}

.page-news .news-stream {
  display: flex;
  flex-direction: column;
  gap: 46px;
  min-width: 0;
}

/* ---------- 区块通用 ---------- */
.page-news .news-block {
  padding-top: 30px;
  border-top: var(--line);
  min-width: 0;
}

.page-news .news-stream > .news-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-news .news-block__head {
  max-width: 46em;
}

.page-news .display-2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-news .news-block__lede {
  margin: 0;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(14, 13, 12, 0.72);
}

.page-news .news-block__more {
  margin: 18px 0 0;
  font-size: 14px;
}

/* ---------- 图片 ---------- */
.page-news .news-figure,
.page-news .news-board__figure,
.page-news .news-youth__figure,
.page-news .news-series__figure {
  margin: 22px 0 0;
}

.page-news .news-figure img,
.page-news .news-board__figure img,
.page-news .news-youth__figure img,
.page-news .news-series__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.page-news .news-figure__caption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--grit);
}

/* ---------- 战报清单 ---------- */
.page-news .news-feed {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: var(--line);
}

.page-news .news-item {
  display: grid;
  gap: 7px;
  padding: 15px 8px;
  border-bottom: var(--line);
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.page-news .news-item:hover,
.page-news .news-item:focus-within {
  background: var(--paper);
}

.page-news .news-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.page-news .news-item__round {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  color: var(--grit);
  white-space: nowrap;
}

.page-news .news-item__title {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.page-news .news-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(14, 13, 12, 0.72);
}

.page-news .news-item__score {
  font-family: var(--font-num);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}

.page-news .news-item:hover .news-item__score {
  color: var(--danxia);
}

/* ---------- 榜单变化（深色面板） ---------- */
.page-news .news-block--night {
  border-top: 0;
  padding: 26px 20px 24px;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--night-fg);
}

.page-news .news-block--night .kicker {
  color: var(--sand);
}

.page-news .news-block--night .display-2 {
  color: var(--night-fg);
}

.page-news .news-block--night .news-block__lede {
  color: rgba(239, 233, 221, 0.74);
}

.page-news .news-board__grid {
  display: grid;
  gap: 26px;
  min-width: 0;
}

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

.page-news .news-notes {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(239, 233, 221, 0.18);
  border: var(--line-night);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 15px;
  background: var(--night-2);
  transition: background var(--dur) var(--ease);
}

.page-news .news-note:hover {
  background: #2b4160;
}

.page-news .news-note__num {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sand);
}

.page-news .news-note__title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: var(--night-fg);
}

.page-news .news-note__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.74;
  color: rgba(239, 233, 221, 0.74);
}

.page-news .news-block--night .news-board__figure {
  margin: 0;
}

.page-news .news-block--night .news-figure__caption {
  color: rgba(239, 233, 221, 0.58);
}

.page-news .news-block--night .link-more {
  color: var(--lime);
}

/* ---------- 阵容表 ---------- */
.page-news .news-table {
  margin-top: 22px;
  overflow-x: auto;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  scrollbar-width: thin;
}

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

.page-news .news-table__el th {
  text-align: left;
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--grit);
  background: var(--dust);
  white-space: nowrap;
}

.page-news .news-table__el td {
  padding: 12px 14px;
  border-top: var(--line);
  line-height: 1.65;
  vertical-align: top;
  color: rgba(14, 13, 12, 0.82);
}

.page-news .news-table__el .is-num {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.page-news .news-table__el tbody tr {
  transition: background var(--dur-fast) var(--ease);
}

.page-news .news-table__el tbody tr:hover {
  background: rgba(194, 240, 74, 0.2);
}

/* ---------- 青训 ---------- */
.page-news .news-youth {
  display: grid;
  gap: 24px;
  min-width: 0;
}

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

.page-news .news-youth__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-top: var(--line);
}

.page-news .news-youth__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: var(--line);
}

.page-news .news-youth__age {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--pitch);
}

.page-news .news-youth__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(14, 13, 12, 0.74);
}

/* ---------- 赛季专题 ---------- */
.page-news .news-series__figure img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-news .news-series__list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.page-news .news-series__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 10px;
  border-top: var(--line);
  transition: background var(--dur) var(--ease);
}

.page-news .news-series__item:last-child {
  border-bottom: var(--line);
}

.page-news .news-series__item:hover {
  background: var(--paper);
}

.page-news .news-series__no {
  font-family: var(--font-num);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  color: rgba(217, 162, 39, 0.7);
}

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

.page-news .news-series__title {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.page-news .news-series__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.74;
  color: rgba(14, 13, 12, 0.72);
}

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

@media (min-width: 760px) {
  .page-news .news-item {
    grid-template-columns: 104px minmax(0, 1fr) 78px;
    gap: 20px;
    align-items: start;
    padding: 16px 12px;
  }

  .page-news .news-item:hover,
  .page-news .news-item:focus-within {
    padding-left: 20px;
  }

  .page-news .news-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .page-news .news-item__score {
    text-align: right;
  }

  .page-news .news-series__item {
    grid-template-columns: 52px minmax(0, 1fr) 104px;
    gap: 24px;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .page-news .news-block--night {
    padding: 36px 32px 32px;
  }

  .page-news .news-board__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 36px;
    align-items: start;
  }

  .page-news .news-youth {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 36px;
    align-items: start;
  }

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

@media (min-width: 1000px) {
  .page-news .news-open__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
  }

  .page-news .news-shell {
    grid-template-columns: 196px minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }

  .page-news .news-rail {
    position: sticky;
    top: 104px;
  }

  .page-news .news-rail__list {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-news .news-rail__link {
    border: 0;
    border-left: 2px solid rgba(14, 13, 12, 0.12);
    border-radius: 0;
    padding: 8px 10px 8px 13px;
    background: transparent;
  }

  .page-news .news-rail__link:hover,
  .page-news .news-rail__link:focus-visible {
    background: rgba(178, 58, 31, 0.07);
    border-left-color: var(--danxia);
    color: var(--danxia);
  }

  .page-news .news-block--night {
    padding: 40px 40px 36px;
  }
}

@media (min-width: 1160px) {
  .page-news .news-ticker__inner {
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item,
  .page-news .news-note,
  .page-news .news-series__item,
  .page-news .news-rail__link,
  .page-news .news-item__score {
    transition: none;
  }
}
