.page-news {
  --news-rule: rgba(44, 66, 87, .72);
  --news-rule-soft: rgba(44, 66, 87, .42);
  --news-card: linear-gradient(152deg, rgba(14, 37, 55, .82), rgba(7, 26, 43, .56));
  --news-shadow: 0 30px 70px -46px rgba(0, 0, 0, .92);
  display: block;
  color: var(--text-body);
}

.page-news p {
  margin: 0;
  line-height: 1.75;
}

.page-news ol,
.page-news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news figure {
  margin: 0;
}

.page-news h2 {
  margin: 12px 0 0;
  font-size: clamp(24px, 5.4vw, 38px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.012em;
  color: var(--paper);
}

.page-news h3 {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--paper);
}

.page-news img {
  max-width: 100%;
  height: auto;
}

.page-news .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 面包屑 ---------- */

.page-news .news-crumb {
  padding-top: calc(var(--header-h) + 10px);
}

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

.page-news .news-hero {
  padding: 16px 0 52px;
}

.page-news .news-hero__wrap {
  display: grid;
  gap: 30px;
}

.page-news .news-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(31px, 8vw, 58px);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: -.016em;
  color: var(--paper);
}

.page-news .news-hero__lede {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 16.5px;
  color: var(--text-body);
}

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

.page-news .news-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.page-news .news-fact {
  position: relative;
  overflow: hidden;
  padding: 20px 16px 22px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-md);
  background: var(--news-card);
}

.page-news .news-fact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--aqua);
  border-radius: 0 0 var(--radius-pill) 0;
}

.page-news .news-fact--accent::before {
  background: var(--coral);
}

.page-news .news-fact--wide {
  grid-column: 1 / -1;
}

.page-news .news-fact__num {
  font-family: var(--font-mono);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--aqua);
}

.page-news .news-fact--accent .news-fact__num {
  color: var(--coral);
}

.page-news .news-fact__label {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ---------- 轮次索引区 ---------- */

.page-news .news-rounds {
  padding: 0 0 64px;
}

.page-news .news-rounds__head {
  display: grid;
  gap: 24px;
  padding-bottom: 28px;
}

.page-news .news-rounds__intro p {
  margin-top: 14px;
  max-width: 56ch;
  font-size: 16px;
  color: var(--text-dim);
}

.page-news .news-rounds__figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* 横向滚动轮次带 */

.page-news .round-strip {
  position: sticky;
  top: var(--header-h);
  z-index: 6;
  margin-bottom: 34px;
  border-top: 1px solid var(--news-rule);
  border-bottom: 1px solid var(--news-rule);
  background: linear-gradient(180deg, rgba(7, 26, 43, .97), rgba(7, 26, 43, .9));
  backdrop-filter: blur(10px);
}

.page-news .round-strip__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.page-news .round-strip__label {
  flex: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.page-news .round-strip__list {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.page-news .round-strip__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-pill);
  background: rgba(14, 37, 55, .7);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--aqua-soft);
  text-decoration: none;
  transition: background-color .24s var(--ease-out), color .24s var(--ease-out), border-color .24s var(--ease-out);
}

.page-news .round-strip__link:hover,
.page-news .round-strip__link:focus-visible {
  border-color: var(--aqua);
  background: var(--aqua);
  color: var(--sea-deep);
}

.page-news .round-strip__link--now {
  border-color: var(--coral);
  background: rgba(255, 106, 69, .16);
  color: var(--coral-soft);
}

.page-news .round-strip__link--now:hover,
.page-news .round-strip__link--now:focus-visible {
  background: var(--coral);
  color: var(--sea-deep);
}

.page-news .round-strip__hint {
  flex: none;
  display: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- 文章错位流 ---------- */

.page-news .news-stream {
  display: grid;
  gap: 18px;
}

.page-news .news-item {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px 20px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-lg);
  background: var(--news-card);
  box-shadow: var(--news-shadow);
  transition: border-color .28s var(--ease-out), transform .28s var(--ease-out);
}

.page-news .news-item:hover {
  border-color: rgba(35, 181, 224, .58);
  transform: translateY(-2px);
}

.page-news .news-item__side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  border: 1px dashed rgba(127, 216, 240, .34);
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(35, 181, 224, .13), rgba(255, 106, 69, .11));
}

.page-news .news-item__side span {
  font-family: var(--font-mono);
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: rgba(242, 246, 248, .88);
}

.page-news .news-item__title {
  margin-top: 12px;
  font-size: clamp(20px, 4.8vw, 26px);
  line-height: 1.3;
  font-weight: 800;
}

.page-news .news-item__meta {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--muted);
}

.page-news .news-item__text {
  margin-top: 12px;
  max-width: 62ch;
  font-size: 15.5px;
  color: var(--text-dim);
}

.page-news .news-item__dims {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  opacity: .72;
  transition: opacity .26s var(--ease-out);
}

.page-news .news-item:hover .news-item__dims,
.page-news .news-item:focus-within .news-item__dims {
  opacity: 1;
}

.page-news .news-item__dims li {
  padding: 4px 11px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-pill);
  background: rgba(14, 37, 55, .72);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--aqua-soft);
}

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

.page-news .news-topics {
  padding: 0 0 64px;
}

.page-news .news-topics__head {
  max-width: 70ch;
}

.page-news .news-topics__head p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-dim);
}

.page-news .news-topics__figure {
  margin-top: 28px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.page-news .topic-item {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 22px 26px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-md);
  background: rgba(14, 37, 55, .6);
}

.page-news .topic-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--aqua);
}

.page-news .topic-item--mid::before {
  background: var(--coral);
}

.page-news .topic-item--final::before {
  background: var(--lime);
}

.page-news .topic-item--coach::before {
  background: var(--aqua-soft);
}

.page-news .topic-item__no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--muted);
}

.page-news .topic-item p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-dim);
}

.page-news .topic-item__stage {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border: 1px solid var(--news-rule-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ---------- 补时与比分观察 ---------- */

.page-news .news-stoppage {
  padding: 0 0 64px;
}

.page-news .news-stoppage__grid {
  display: grid;
  gap: 30px;
}

.page-news .news-stoppage__visual h2 {
  margin-top: 12px;
}

.page-news .news-stoppage__visual .media-frame {
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-news .stoppage-list {
  display: grid;
  gap: 4px;
}

.page-news .stoppage-note {
  padding: 20px 0;
  border-bottom: 1px dashed var(--news-rule);
}

.page-news .stoppage-note:first-child {
  padding-top: 0;
}

.page-news .stoppage-note h3 {
  margin-top: 0;
  font-size: 17.5px;
}

.page-news .stoppage-note p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-dim);
}

.page-news .stoppage-note__meta {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--muted);
}

.page-news .news-stoppage__foot {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(184, 242, 74, .3);
  border-radius: var(--radius-md);
  background: rgba(184, 242, 74, .07);
  font-size: 14.5px;
  color: var(--text-body);
}

/* ---------- 球迷组织 ---------- */

.page-news .news-community {
  padding: 0 0 64px;
}

.page-news .news-community__grid {
  display: grid;
  gap: 28px;
}

.page-news .news-community__copy > p {
  margin-top: 16px;
  max-width: 58ch;
  font-size: 16px;
  color: var(--text-dim);
}

.page-news .community-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.page-news .community-facts li {
  padding: 16px 14px;
  border: 1px solid var(--news-rule);
  border-radius: var(--radius-md);
  background: rgba(14, 37, 55, .58);
}

.page-news .community-facts__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
}

.page-news .community-facts__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}

.page-news .news-community__actions {
  margin-top: 24px;
}

.page-news .news-community__figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* ---------- 术语说明 ---------- */

.page-news .news-terms {
  padding: 0 0 64px;
}

.page-news .news-terms__head {
  max-width: 70ch;
}

.page-news .news-terms__head p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-dim);
}

.page-news .term-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.page-news .term-item {
  padding: 18px 18px 20px;
  border: 1px solid var(--news-rule);
  border-left: 3px solid var(--aqua);
  border-radius: var(--radius-md);
  background: rgba(14, 37, 55, .5);
}

.page-news .term-item dt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--aqua-soft);
}

.page-news .term-item dd {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-news .news-terms__more {
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--muted);
}

.page-news .news-terms__more a {
  color: var(--aqua);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 181, 224, .5);
}

.page-news .news-terms__more a:hover {
  color: var(--aqua-soft);
}

/* ---------- 订阅与联系 ---------- */

.page-news .news-cta {
  padding: 0 0 72px;
}

.page-news .news-cta__box {
  position: relative;
  overflow: hidden;
  padding: 30px 22px 32px;
  border: 1px solid rgba(255, 106, 69, .38);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 106, 69, .16), rgba(35, 181, 224, .12) 62%, rgba(7, 26, 43, .9));
}

.page-news .news-cta__copy h2 {
  margin-top: 12px;
}

.page-news .news-cta__copy > p {
  margin-top: 14px;
  max-width: 62ch;
  font-size: 15.5px;
  color: var(--text-body);
}

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

/* ---------- 响应式 ---------- */

@media (min-width: 640px) {
  .page-news .round-strip__hint {
    display: block;
  }
}

@media (min-width: 860px) {
  .page-news .news-stream {
    gap: 22px;
  }

  .page-news .news-item {
    grid-template-columns: minmax(0, 1fr) 168px;
    gap: 34px;
    align-items: center;
    padding: 30px 28px;
  }

  .page-news .news-item--flip {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  .page-news .news-item--flip .news-item__side {
    order: -1;
  }

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

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

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 24px 0 68px;
  }

  .page-news .news-hero__wrap {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 48px;
    align-items: end;
  }

  .page-news .news-rounds__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
    gap: 48px;
    align-items: end;
    padding-bottom: 34px;
  }

  .page-news .news-stoppage__grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .page-news .news-community__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
    gap: 48px;
    align-items: center;
  }

  .page-news .news-cta__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 36px 40px;
  }

  .page-news .news-cta__copy {
    flex: 1 1 420px;
  }

  .page-news .news-cta__actions {
    margin-top: 0;
  }
}

@media (min-width: 1180px) {
  .page-news .news-hero__facts {
    gap: 16px;
  }

  .page-news .news-fact {
    padding: 24px 20px 26px;
  }
}
