.page-news {
  --news-hair: rgba(241, 236, 226, .16);
  --news-hair-strong: rgba(241, 236, 226, .34);
  --news-soft: rgba(241, 236, 226, .58);
  --news-card: rgba(43, 49, 56, .52);
  --news-card-hover: rgba(43, 49, 56, .82);
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb {
  padding-top: 22px;
  padding-bottom: 2px;
}

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

.page-news .news-hero__grid {
  gap: 28px;
  align-items: start;
}

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

.page-news .news-hero__title {
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: clamp(30px, 6.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 12px 0 14px;
}

.page-news .news-hero__lede {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 46ch;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--news-hair);
}

.page-news .news-hero__stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-hero__stats .stat-value {
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--neon);
}

.page-news .news-hero__stats .stat-label {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--news-soft);
}

.page-news .news-hero__media {
  border: 1px solid var(--news-hair);
}

/* ---------- 赛季阶段刻度 ---------- */
.page-news .news-phases {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid var(--news-hair);
  border-bottom: 1px solid var(--news-hair);
}

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

.page-news .news-phase {
  flex: 1 0 auto;
}

.page-news .news-phase a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px 14px 0;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--news-soft);
  transition: color .16s ease;
}

.page-news .news-phase a::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  transition: background .16s ease, box-shadow .16s ease;
}

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

.page-news .news-phase.is-current a {
  color: var(--paper);
  font-weight: 700;
}

.page-news .news-phase.is-current a::before {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 138, 43, .2);
}

/* ---------- 章节头 ---------- */
.page-news .chapter-head {
  margin-bottom: 26px;
}

.page-news .chapter-head__body {
  min-width: 0;
}

.page-news .chapter-head__body .section-title {
  margin: 6px 0 8px;
}

.page-news .chapter-head__body .lede {
  color: var(--news-soft);
  max-width: 52ch;
}

/* ---------- 01 本期要目 ---------- */
.page-news .news-digest {
  margin-top: 0;
}

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

.page-news .digest-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--news-hair);
  transition: background .16s ease;
}

.page-news .digest-item:hover {
  background: rgba(241, 236, 226, .035);
}

.page-news .digest-item__no {
  font-size: 13px;
  color: var(--clay);
  padding-top: 3px;
}

.page-news .digest-item__body {
  min-width: 0;
}

.page-news .digest-item__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 6px;
}

.page-news .digest-item__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--news-soft);
  margin: 0;
}

.page-news .digest-item .tag {
  grid-column: 2;
  justify-self: start;
}

/* ---------- 过滤栏 ---------- */
.page-news .news-filter {
  margin-bottom: 30px;
}

/* ---------- 条目流 ---------- */
.page-news .news-stream {
  padding-top: 52px;
}

.page-news .news-stream__body.is-fading {
  opacity: .35;
  transition: opacity .12s ease;
}

.page-news .news-block {
  padding-bottom: 24px;
  scroll-margin-top: calc(var(--bar) + 24px);
}

.page-news .news-block + .news-block {
  margin-top: 46px;
  padding-top: 40px;
  border-top: 1px solid var(--news-hair);
}

.page-news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-item {
  display: block;
  padding: 18px 20px;
  background: var(--news-card);
  border: 1px solid var(--news-hair);
  border-left: 3px solid var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.page-news .news-item:hover,
.page-news .news-item:focus-within {
  background: var(--news-card-hover);
  border-color: var(--news-hair-strong);
  transform: translateY(-2px);
  outline: none;
}

.page-news .news-item:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.page-news .news-item[data-cat="foreign"] {
  border-left-color: var(--neon);
}

.page-news .news-item[data-cat="youth"] {
  border-left-color: var(--moss);
}

.page-news .news-item[data-cat="reel"] {
  border-left-color: var(--ice);
}

.page-news .news-item[data-cat="calendar"] {
  border-left-color: var(--amber);
}

.page-news .news-item[data-cat="award"] {
  border-left-color: var(--rose);
}

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

.page-news .news-item__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-news .news-item__title {
  flex: 0 1 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.page-news .news-item__leader {
  flex: 1 1 auto;
  min-width: 14px;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
}

.page-news .news-item__head .tag {
  flex: 0 0 auto;
}

.page-news .news-item__meta {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--clay);
  margin: 8px 0 0;
}

.page-news .news-item__sum {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 8px 0 0;
}

.page-news .news-item__more {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--news-soft);
  padding-left: 12px;
  border-left: 1px solid var(--clay);
  transition: max-height .2s ease, opacity .2s ease, margin-top .2s ease;
}

.page-news .news-item:hover .news-item__more,
.page-news .news-item:focus-within .news-item__more {
  max-height: 8em;
  opacity: 1;
  margin-top: 12px;
}

.page-news .news-item--feature {
  padding-top: 0;
  overflow: hidden;
}

.page-news .news-item__media {
  margin: 0 0 16px;
  border-bottom: 1px solid var(--news-hair);
}

.page-news .news-item__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 07 更早的条目 ---------- */
.page-news .news-archive {
  background: var(--ink-deep);
  border-top: 1px solid var(--news-hair);
  padding-top: 56px;
}

.page-news .archive-grid {
  display: grid;
  gap: 16px;
}

.page-news .archive-group {
  padding: 20px 20px 8px;
  background: rgba(43, 49, 56, .4);
  border: 1px solid var(--news-hair);
  scroll-margin-top: calc(var(--bar) + 24px);
}

.page-news .archive-group__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 6px;
}

.page-news .archive-group__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
}

.page-news .archive-group .index-list {
  border-top: 1px solid var(--news-hair);
}

.page-news .archive-group .index-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--news-hair);
}

.page-news .archive-group .index-num {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--clay);
}

.page-news .archive-group .index-item a {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .16s ease;
}

.page-news .archive-group .index-item a:hover,
.page-news .archive-group .index-item a:focus-visible {
  color: var(--neon);
}

.page-news .news-archive__foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--news-hair);
}

.page-news .news-archive__note {
  font-size: 14px;
  line-height: 1.75;
  color: var(--news-soft);
  margin: 0;
}

.page-news .news-archive__note a {
  color: var(--ice);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 211, 247, .4);
}

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

.page-news .news-archive__foot .btn {
  align-self: flex-start;
}

/* ---------- 触屏无悬停时展开补充摘要 ---------- */
@media (hover: none) {
  .page-news .news-item__more {
    max-height: 8em;
    opacity: 1;
    margin-top: 12px;
  }
}

/* ---------- 平板 ---------- */
@media (min-width: 640px) {
  .page-news .digest-item {
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 6px 18px;
  }

  .page-news .digest-item .tag {
    grid-column: 3;
    align-self: start;
    margin-top: 2px;
  }

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

  .page-news .news-archive__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .news-archive__note {
    max-width: 60ch;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 1024px) {
  .page-news .news-hero {
    padding-top: 34px;
  }

  .page-news .news-hero__media {
    margin-top: 6px;
  }

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

  .page-news .news-item--feature,
  .page-news .news-item--wide {
    grid-column: 1 / -1;
  }

  .page-news .news-item--feature {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 12fr);
    gap: 0 28px;
    align-items: start;
    padding: 0 0 0 0;
  }

  .page-news .news-item--feature .news-item__media {
    margin: 0;
    border-bottom: 0;
    border-right: 1px solid var(--news-hair);
    height: 100%;
  }

  .page-news .news-item--feature .news-item__media img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-item--feature .news-item__body {
    padding: 22px 24px 22px 0;
  }

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

  .page-news .news-block + .news-block {
    margin-top: 56px;
    padding-top: 48px;
  }
}

@media (min-width: 1280px) {
  .page-news .news-hero__title {
    font-size: 54px;
  }

  .page-news .news-item__title {
    font-size: 17px;
  }
}
