/* ===== 赛场动态 / page-news ===== */
.page-news {
  --news-gap: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(52px, 8vw, 104px);
}

.page-news .breadcrumb {
  margin-top: clamp(16px, 2.4vw, 26px);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding: clamp(26px, 4vw, 52px) 0 clamp(30px, 4.6vw, 60px);
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -28%;
  width: min(560px, 74vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(57, 255, 136, 0.10), transparent 68%);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.page-news .news-hero__lead {
  max-width: 620px;
}

.page-news .news-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(38px, 8vw, 66px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-news .news-hero__sub {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.82;
  color: var(--text);
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.page-news .news-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-news .news-hero__meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  flex: none;
}

.page-news .news-hero__meta b {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--neon);
}

.page-news .news-hero__media {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-800);
  box-shadow: var(--shadow);
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .news-hero__media .media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10, 17, 40, 0.92));
}

.page-news .news-hero__media .media__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

@media (min-width: 900px) {
  .page-news .news-hero__inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: clamp(30px, 4.4vw, 60px);
  }

  .page-news .news-hero__media {
    transform: translateY(clamp(10px, 2vw, 28px));
  }
}

/* ---------- 侧栏导览 ---------- */
.page-news .with-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.4vw, 40px);
}

.page-news .with-rail__aside {
  min-width: 0;
}

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

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

.page-news .section-nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  color: var(--text-dim);
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-news .section-nav__link .mono {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
}

.page-news .section-nav__link:hover {
  color: var(--white);
  border-color: var(--line-strong);
}

.page-news .section-nav__link[aria-current="true"] {
  color: var(--white);
  border-color: rgba(57, 255, 136, 0.5);
  background: var(--neon-dim);
}

.page-news .section-nav__link[aria-current="true"] .mono {
  color: var(--neon);
}

@media (min-width: 1000px) {
  .page-news .with-rail {
    grid-template-columns: 216px minmax(0, 1fr);
    gap: clamp(34px, 5vw, 68px);
  }

  .page-news .with-rail__aside {
    position: sticky;
    top: calc(var(--hdr-h) + 22px);
    align-self: start;
  }

  .page-news .section-nav__list {
    display: block;
    padding: 0;
    overflow: visible;
  }

  .page-news .section-nav__link {
    display: flex;
    width: 100%;
    margin-bottom: 6px;
    padding: 9px 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0 var(--r-s) var(--r-s) 0;
    justify-content: flex-start;
  }

  .page-news .section-nav__link[aria-current="true"] {
    border-left-color: var(--neon);
    background: linear-gradient(90deg, var(--neon-dim), transparent);
  }
}

/* ---------- 章节 ---------- */
.page-news .news-section {
  padding-block: clamp(32px, 5vw, 56px);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--hdr-h) + 24px);
}

.page-news .news-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-news .news-section .section__head {
  margin-bottom: clamp(18px, 2.6vw, 30px);
  max-width: 72ch;
}

.page-news .news-section h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-news .news-section .section__head > p:last-child {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-dim);
}

/* ---------- 动态列表 ---------- */
.page-news .feed {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .feed-item {
  padding: clamp(16px, 2.2vw, 22px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-news .feed-item:hover {
  transform: translateY(-2px);
}

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

.page-news .feed-item__round {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.page-news .feed-item__title {
  margin: 12px 0 0;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.48;
  color: var(--white);
}

.page-news .feed-item__text {
  margin: 9px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ---------- 轮次进度 ---------- */
.page-news .round-rail {
  margin-bottom: clamp(20px, 3vw, 30px);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: rgba(16, 27, 58, 0.5);
}

.page-news .round-rail__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.page-news .round-rail__now {
  font-size: 17px;
  font-weight: 700;
  color: var(--neon);
}

.page-news .round-rail__total {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.page-news .round-rail__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--ink-700);
  overflow: hidden;
}

.page-news .round-rail__fill {
  display: block;
  width: 73.3%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--elec), var(--neon));
}

/* ---------- 错位栅格 ---------- */
.page-news .asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.page-news .asym__main,
.page-news .asym__side {
  min-width: 0;
}

.page-news .asym .media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--ink-800);
}

.page-news .asym .media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .asym .media__caption {
  margin: 0;
  padding: 12px 16px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-dim);
  background: rgba(10, 17, 40, 0.7);
}

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

  .page-news .asym__main {
    grid-column: 1 / span 7;
  }

  .page-news .asym__side {
    grid-column: 8 / span 5;
    margin-top: clamp(16px, 3vw, 42px);
  }
}

/* ---------- 推演条目 ---------- */
.page-news .proj-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-news .proj-item {
  padding: 14px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: linear-gradient(180deg, rgba(16, 27, 58, 0.85), rgba(10, 17, 40, 0.6));
}

.page-news .proj-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.page-news .proj-item__head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}

.page-news .proj-item__num {
  flex: none;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--orange);
}

.page-news .proj-item p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-dim);
}

/* ---------- 阵容折叠卡 ---------- */
.page-news .squad-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-news .squad-item {
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: rgba(16, 27, 58, 0.52);
  overflow: hidden;
}

.page-news .squad-item > summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.page-news .squad-item > summary::after {
  content: "+";
  flex: none;
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
  color: var(--neon);
}

.page-news .squad-item[open] > summary::after {
  content: "–";
}

.page-news .squad-item[open] > summary {
  border-bottom: 1px solid var(--line);
}

.page-news .squad-item__body {
  padding: 13px 16px 16px;
  font-size: 14px;
  line-height: 1.82;
  color: var(--text-dim);
}

/* ---------- 友谊赛与杯赛 ---------- */
.page-news .drill-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .drill-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: linear-gradient(180deg, rgba(16, 27, 58, 0.8), rgba(10, 17, 40, 0.5));
}

.page-news .drill-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 2px;
  background: var(--orange);
}

.page-news .drill-item .tag {
  display: inline-block;
  margin-bottom: 10px;
}

.page-news .drill-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.page-news .drill-item p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
}

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

/* ---------- 回看集锦 ---------- */
.page-news .reel-figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-800);
}

.page-news .reel-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-news .reel-figure .media__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.page-news .reel-figure .media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10, 17, 40, 0.92));
}

.page-news .reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .reel-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: rgba(16, 27, 58, 0.5);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-news .reel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 136, 0.42);
}

.page-news .reel-card__idx {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--neon);
}

.page-news .reel-card h3 {
  margin: 9px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}

.page-news .reel-card p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-dim);
}

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

/* ---------- 更新节奏 ---------- */
.page-news .rhythm-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--line);
}

.page-news .rhythm-list > li {
  display: grid;
  gap: 5px 18px;
  padding: 15px 18px;
  background: var(--ink-900);
}

.page-news .rhythm-list__when {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--neon);
}

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

@media (min-width: 720px) {
  .page-news .rhythm-list > li {
    grid-template-columns: 168px minmax(0, 1fr);
    align-items: baseline;
  }
}

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

/* ---------- 收尾间距 ---------- */
.page-news .with-rail__body > .news-section:last-child {
  padding-bottom: clamp(20px, 3vw, 34px);
}
