.page-news {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.page-news .news-scope {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4.5vw, 56px);
}

.page-news .bx-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--mute);
}

.page-news .bx-crumbs a {
  color: var(--mute);
  text-decoration: none;
  transition: color .18s ease;
}

.page-news .bx-crumbs a:hover {
  color: var(--cyan);
}

.page-news .bx-crumbs span[aria-current="page"] {
  color: var(--ice);
}

.page-news img {
  max-width: 100%;
  display: block;
}

/* ---------- 首屏框景 ---------- */

.page-news .news-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 3.4vw, 38px);
  background:
    linear-gradient(180deg, rgba(23, 53, 43, .92), rgba(11, 15, 13, .78)),
    var(--panel-deep);
}

.page-news .news-hero__grid {
  display: grid;
  gap: 24px;
}

.page-news .news-hero__title {
  margin: 10px 0 0;
  font-size: clamp(26px, 4.8vw, 46px);
  line-height: 1.18;
  letter-spacing: .015em;
  color: var(--ice);
}

.page-news .news-hero__lead .bx-lede {
  margin: 16px 0 0;
  max-width: 62ch;
  color: rgba(231, 241, 250, .8);
}

.page-news .news-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

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

.page-news .news-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-hero__stamp {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hair-soft);
}

.page-news .news-hero__stampnum {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .04em;
}

.page-news .news-hero__stamptext {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--mute);
}

/* ---------- 媒体容器 ---------- */

.page-news .bx-media {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel-deep), var(--ink));
}

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

.page-news .bx-media__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(231, 241, 250, .86);
  background: linear-gradient(180deg, rgba(11, 15, 13, 0), rgba(11, 15, 13, .9));
}

.page-news .news-band {
  aspect-ratio: 7 / 4;
}

/* ---------- 标签云 ---------- */

.page-news .news-tagzone__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 78ch;
}

.page-news .news-tagzone__head .bx-note {
  margin: 0;
  color: rgba(231, 241, 250, .68);
  line-height: 1.75;
}

.page-news .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.page-news .news-tags__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid var(--hair);
  color: rgba(231, 241, 250, .82);
  font-size: 13px;
  letter-spacing: .05em;
  cursor: pointer;
  user-select: none;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
}

.page-news .news-tag:hover {
  border-color: var(--cyan);
  color: var(--ice);
  transform: translateY(-2px);
}

.page-news .news-tag--primary {
  border-color: rgba(61, 242, 208, .5);
  color: var(--cyan);
}

.page-news .news-tags__radio:checked + .news-tag {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--ink);
  font-weight: 700;
}

.page-news .news-tags__radio:focus-visible + .news-tag {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* 纯 CSS 标签过滤：选中某标签时，未命中的条目收起 */
.page-news .news-scope:has(#lgi-1:checked) .news-item:not([data-tags~="联赛"]) { display: none; }
.page-news .news-scope:has(#lgi-2:checked) .news-item:not([data-tags~="转会"]) { display: none; }
.page-news .news-scope:has(#lgi-3:checked) .news-item:not([data-tags~="升降级"]) { display: none; }
.page-news .news-scope:has(#lgi-4:checked) .news-item:not([data-tags~="杯赛"]) { display: none; }
.page-news .news-scope:has(#lgi-5:checked) .news-item:not([data-tags~="赛程"]) { display: none; }
.page-news .news-scope:has(#lgi-6:checked) .news-item:not([data-tags~="战绩"]) { display: none; }
.page-news .news-scope:has(#lgi-7:checked) .news-item:not([data-tags~="积分"]) { display: none; }
.page-news .news-scope:has(#lgi-8:checked) .news-item:not([data-tags~="净胜"]) { display: none; }
.page-news .news-scope:has(#lgi-9:checked) .news-item:not([data-tags~="赛程强度"]) { display: none; }
.page-news .news-scope:has(#lgi-10:checked) .news-item:not([data-tags~="近五场走势"]) { display: none; }
.page-news .news-scope:has(#lgi-11:checked) .news-item:not([data-tags~="附加赛"]) { display: none; }
.page-news .news-scope:has(#lgi-12:checked) .news-item:not([data-tags~="季前热身"]) { display: none; }

/* ---------- 左窄右宽错位网格 ---------- */

.page-news .news-layout {
  display: grid;
  gap: clamp(24px, 3.6vw, 40px);
}

.page-news .news-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-side__box {
  padding: 18px;
}

.page-news .news-side__box .bx-h3 {
  margin: 8px 0 10px;
  color: var(--ice);
}

.page-news .news-side__box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(231, 241, 250, .74);
}

.page-news .news-details {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hair-soft);
}

.page-news .news-details summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cyan);
}

.page-news .news-details summary::-webkit-details-marker {
  display: none;
}

.page-news .news-details summary::before {
  content: "＋ ";
  font-family: var(--mono);
}

.page-news .news-details[open] summary::before {
  content: "－ ";
}

.page-news .news-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(231, 241, 250, .74);
}

.page-news .news-hints {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-hints li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(231, 241, 250, .74);
}

.page-news .news-hints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 1px;
  background: var(--brick);
}

/* ---------- 动态列表 ---------- */

.page-news .news-feed__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.page-news .news-feed__head .bx-note {
  margin: 0;
  color: rgba(231, 241, 250, .68);
  line-height: 1.75;
}

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

.page-news .news-item {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 12px 15px 14px;
  border-bottom: 1px solid var(--hair-soft);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.page-news .news-item:hover,
.page-news .news-item:focus {
  transform: translateY(-2px);
  background: rgba(23, 53, 43, .6);
  border-bottom-color: var(--cyan);
}

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

.page-news .news-item__bar {
  grid-row: 1 / -1;
  align-self: start;
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, var(--cool), var(--ice));
}

.page-news .news-item__bar--m { height: 44px; }
.page-news .news-item__bar--l { height: 64px; }

.page-news .news-item__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--ice);
}

.page-news .news-item__sum {
  margin: 5px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(231, 241, 250, .72);
}

.page-news .news-item__more {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.7;
  color: var(--cyan);
  transition: max-height .24s ease, opacity .24s ease, margin-top .24s ease;
}

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

.page-news .news-item__meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
}

/* ---------- 轮次形势观察 ---------- */

.page-news .news-column__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 76ch;
}

.page-news .news-column__head .bx-note {
  margin: 0;
  color: rgba(231, 241, 250, .68);
  line-height: 1.75;
}

.page-news .news-column__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: 24px;
}

.page-news .news-column__media {
  aspect-ratio: 4 / 3;
}

.page-news .news-issues {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-news .news-issue {
  background: var(--cream);
  color: #241A12;
  padding: 18px;
  border-left: 3px solid var(--brick);
}

.page-news .news-issue__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-news .news-issue__idx {
  font-size: 18px;
  font-weight: 700;
  color: var(--brick);
}

.page-news .news-issue .bx-tag {
  border-color: rgba(36, 26, 18, .3);
  color: #4A3A2C;
  font-size: 11px;
}

.page-news .news-issue .bx-h3 {
  margin: 12px 0 8px;
  color: #1D140D;
  font-size: 17px;
}

.page-news .news-issue p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #4A3A2C;
}

.page-news .bx-meter {
  display: block;
  height: 6px;
  background: rgba(36, 26, 18, .16);
  overflow: hidden;
}

.page-news .bx-meter__fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: var(--grad-pressure);
  transition: width .32s ease;
}

/* ---------- 赛程档案 ---------- */

.page-news .news-archive__grid {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.page-news .news-archive__text .bx-note {
  margin: 12px 0 0;
  color: rgba(231, 241, 250, .68);
  line-height: 1.75;
}

.page-news .news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-archive__list li {
  padding: 14px 16px;
  border: 1px solid var(--hair);
  background: rgba(23, 53, 43, .42);
  transition: border-color .18s ease, transform .18s ease;
}

.page-news .news-archive__list li:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.page-news .news-archive__list p {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(231, 241, 250, .72);
}

.page-news .news-archive__media {
  aspect-ratio: 1 / 1;
}

/* ---------- 更新与订正 ---------- */

.page-news .news-rhythm__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 76ch;
}

.page-news .news-rhythm__head .bx-note {
  margin: 0;
  color: rgba(231, 241, 250, .68);
  line-height: 1.75;
}

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

.page-news .news-rhythm__step {
  padding: 18px;
  border: 1px solid var(--hair);
  background: linear-gradient(150deg, rgba(23, 53, 43, .8), rgba(11, 15, 13, .5));
}

.page-news .news-rhythm__step .bx-num {
  display: block;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--cyan);
}

.page-news .news-rhythm__step .bx-h3 {
  margin: 10px 0 8px;
  color: var(--ice);
}

.page-news .news-rhythm__step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(231, 241, 250, .72);
}

.page-news .news-rhythm__media {
  aspect-ratio: 2 / 1;
  margin-top: 20px;
}

/* ---------- 出口区块 ---------- */

.page-news .news-outro__box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--cyan);
  background: linear-gradient(120deg, rgba(16, 37, 30, .9), rgba(11, 15, 13, .7));
}

.page-news .news-outro__box .bx-h3 {
  margin: 0;
  color: var(--ice);
}

.page-news .news-outro__box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(231, 241, 250, .74);
}

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

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

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

  .page-news .news-item__meta {
    grid-column: 3;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-top: 0;
  }

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

@media (min-width: 960px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: var(--gap);
    align-items: start;
  }

  .page-news .news-hero__aside {
    padding-top: 0;
    padding-left: var(--gap);
    border-top: 0;
    border-left: 1px solid var(--hair);
    min-height: 100%;
  }

  .page-news .news-layout {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    align-items: start;
  }

  .page-news .news-side {
    position: sticky;
    top: 96px;
  }

  .page-news .news-column__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }

  .page-news .news-archive__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

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

  .page-news .news-item__sum {
    max-width: 68ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item,
  .page-news .news-tag,
  .page-news .news-archive__list li,
  .page-news .bx-meter__fill {
    transition: none;
  }

  .page-news .news-item:hover,
  .page-news .news-item:focus,
  .page-news .news-tag:hover,
  .page-news .news-archive__list li:hover {
    transform: none;
  }
}

.page-news {
  --w: 1rem;
}
