/* ==========================================================
   赛季动态 /press/ —— 页面专属样式，全部限定在 .page-news
   ========================================================== */

.page-news{
  --nw-card: rgba(18,48,74,.66);
  --nw-edge: rgba(154,170,184,.14);
  --nw-edge-soft: rgba(154,170,184,.08);
  --nw-pad: clamp(20px, 4vw, 38px);
  padding-bottom: clamp(44px, 8vw, 92px);
}

/* ---------- 面包屑 ---------- */
.page-news .crumbs{
  margin: 0 0 8px;
}

/* ---------- 页头 ---------- */
.page-news .news-head{
  position: relative;
  max-width: 62rem;
  padding-top: clamp(8px, 2vw, 20px);
}
.page-news .news-head h1{
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.95rem, 6.4vw, 3.9rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--white);
}
.page-news .news-head .lede{
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--mist);
}
.page-news .news-head::after{
  content: "";
  display: block;
  width: clamp(64px, 12vw, 124px);
  height: 4px;
  margin-top: clamp(20px, 3vw, 30px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(240,160,60,0));
}

/* ---------- 赛季轮次轨道 ---------- */
.page-news .round-track{
  margin-top: clamp(30px, 5vw, 54px);
  padding: clamp(18px, 3vw, 28px) 0;
  border-top: 1px solid var(--nw-edge);
  border-bottom: 1px solid var(--nw-edge);
  background: linear-gradient(180deg, rgba(18,48,74,.5), rgba(10,26,42,0));
}
.page-news .track-head{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin-bottom: 16px;
}
.page-news .track-head h2{
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-news .track-head p{
  margin: 0;
  font-size: .86rem;
  color: var(--mist);
}
.page-news .track-rail{
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.page-news .track-rail::-webkit-scrollbar{
  height: 4px;
}
.page-news .track-rail::-webkit-scrollbar-thumb{
  background: var(--line-strong);
  border-radius: 999px;
}
.page-news .track-seg{
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 176px;
  padding: 13px 16px 15px;
  border-radius: var(--r-md);
  background: var(--nw-card);
  border: 1px solid var(--nw-edge);
  border-left: 3px solid var(--plate);
  transition: border-color .2s ease, background .2s ease;
}
.page-news .track-seg:hover{
  border-color: var(--line-strong);
}
.page-news .track-seg--now{
  border-left-color: var(--gold);
  background: linear-gradient(140deg, rgba(240,160,60,.16), rgba(18,48,74,.82) 64%);
}
.page-news .track-num{
  display: block;
  font-family: var(--font-num);
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--white);
}
.page-news .track-seg--now .track-num{
  color: var(--gold);
}
.page-news .track-note{
  display: block;
  margin-top: 5px;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--mist);
}

/* ---------- 区块标题 ---------- */
.page-news .news-feed{
  position: relative;
  margin-top: clamp(34px, 6vw, 66px);
}
.page-news .news-block{
  margin-top: clamp(42px, 7vw, 80px);
}
.page-news .block-head{
  max-width: 60rem;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.page-news .block-head h2{
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--white);
}
.page-news .block-lede{
  margin: 12px 0 0;
  max-width: 58ch;
  font-size: .95rem;
  color: var(--mist);
}

/* ---------- 筛选 ---------- */
.page-news .nf-input{
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.page-news .nf-legend{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 22px;
}
.page-news .nf-legend-label{
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist);
}
.page-news .filter{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-news .filter label{
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--nw-edge);
  background: rgba(44,59,73,.48);
  color: var(--mist);
  font-size: .84rem;
  line-height: 1.3;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.page-news .filter label:hover{
  color: var(--white);
  border-color: var(--line-strong);
}
.page-news #nf-all:checked ~ .nf-legend label[for="nf-all"],
.page-news #nf-round:checked ~ .nf-legend label[for="nf-round"],
.page-news #nf-scope:checked ~ .nf-legend label[for="nf-scope"],
.page-news #nf-column:checked ~ .nf-legend label[for="nf-column"],
.page-news #nf-roster:checked ~ .nf-legend label[for="nf-roster"]{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.page-news #nf-round:checked ~ .feed > li:not(.tag-round),
.page-news #nf-scope:checked ~ .feed > li:not(.tag-scope),
.page-news #nf-column:checked ~ .feed > li:not(.tag-column),
.page-news #nf-roster:checked ~ .feed > li:not(.tag-roster){
  display: none;
}

/* ---------- 条目流 ---------- */
.page-news .feed{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 特写条目 */
.page-news .entry--feature{
  position: relative;
  margin-bottom: clamp(14px, 2.4vw, 24px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(148deg, rgba(18,48,74,.96), rgba(10,26,42,.98) 62%);
  border: 1px solid var(--nw-edge);
  transition: border-color .22s ease;
}
.page-news .entry--feature:hover{
  border-color: rgba(240,160,60,.42);
}
.page-news .entry--feature::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  z-index: 2;
}
.page-news .feature-inner{
  display: grid;
  grid-template-columns: 1fr;
}
.page-news .feature-visual{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  order: 2;
}
.page-news .feature-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.06) brightness(.78);
}
.page-news .feature-body{
  order: 1;
  padding: var(--nw-pad);
}
.page-news .feature-body h3{
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.22rem, 3.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--white);
}
.page-news .feature-body p{
  margin: 14px 0 0;
  max-width: 54ch;
  color: var(--mist);
}
.page-news .feature-body .note{
  margin-top: 20px;
  font-size: .88rem;
}
@media (min-width: 860px){
  .page-news .feature-inner{
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    align-items: stretch;
  }
  .page-news .feature-visual{
    order: 1;
    aspect-ratio: auto;
    min-height: 100%;
  }
  .page-news .feature-visual::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(10,26,42,.94) 0%, rgba(10,26,42,.42) 46%, rgba(10,26,42,0) 100%);
  }
  .page-news .feature-body{
    order: 2;
  }
}

/* 紧凑条目 */
.page-news .entry--compact{
  position: relative;
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 4px 12px;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid var(--nw-edge-soft);
  transition: background .2s ease;
}
.page-news .entry--compact::before{
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 3px;
  background: var(--plate);
  transform: skewX(-26deg);
  transition: background .2s ease, width .2s ease;
}
.page-news .entry--compact:hover{
  background: linear-gradient(90deg, rgba(240,160,60,.06), rgba(240,160,60,0) 64%);
}
.page-news .entry--compact:hover::before{
  background: var(--gold);
  width: 15px;
}
.page-news .entry-idx{
  font-family: var(--font-num);
  font-size: .92rem;
  letter-spacing: .04em;
  color: rgba(154,170,184,.5);
  padding-top: 2px;
  transition: color .2s ease;
}
.page-news .entry--compact:hover .entry-idx{
  color: var(--gold-deep);
}
.page-news .entry-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 0 8px;
}
.page-news .entry-time{
  font-family: var(--font-num);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--mist);
}
.page-news .entry-dim{
  padding: 0;
  border: 0;
  background: none;
}
.page-news .entry-dim > summary{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  color: var(--white);
}
.page-news .entry-dim > summary::-webkit-details-marker{
  display: none;
}
.page-news .entry-dim > summary::after{
  content: "+";
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 10px;
  font-family: var(--font-num);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--gold-deep);
  transition: color .2s ease;
}
.page-news .entry-dim[open] > summary::after{
  content: "–";
  color: var(--gold);
}
.page-news .entry-title{
  flex: 1 1 auto;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.48;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.page-news .entry-dim > summary:hover .entry-title{
  border-bottom-color: var(--gold);
}
.page-news .entry-dim .dim-body{
  margin-top: 10px;
  padding: 0;
  max-width: 68ch;
  font-size: .92rem;
  line-height: 1.72;
  color: var(--mist);
}
.page-news .entry-dim .dim-body p{
  margin: 0;
}

/* ---------- 复核流程 ---------- */
.page-news .path{
  margin: 0;
}
.page-news .path-step{
  background: var(--nw-card);
}

/* ---------- 口径说明 ---------- */
.page-news .scope-grid{
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}
.page-news .scope-figure{
  margin: 0;
}
.page-news .scope-visual{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--nw-edge);
  aspect-ratio: 4 / 3;
}
.page-news .scope-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.08) brightness(.8);
}
.page-news .scope-figure .media-caption{
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--mist);
}
.page-news .scope-dims{
  display: grid;
  gap: 10px;
}
.page-news .scope-dims .dim{
  border-radius: var(--r-md);
  border: 1px solid var(--nw-edge);
  background: rgba(18,48,74,.55);
  transition: border-color .2s ease;
}
.page-news .scope-dims .dim:hover{
  border-color: var(--line-strong);
}
.page-news .scope-dims .dim[open]{
  border-color: rgba(240,160,60,.36);
}
.page-news .scope-dims .dim > summary{
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 500;
  color: var(--white);
}
.page-news .scope-dims .dim .dim-body{
  color: var(--mist);
}
@media (min-width: 900px){
  .page-news .scope-grid{
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  }
}

/* ---------- 栏目迭代 ---------- */
.page-news .iter-band{
  display: grid;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--nw-edge);
  background: linear-gradient(150deg, rgba(44,59,73,.7), rgba(10,26,42,.95) 72%);
}
.page-news .iter-band-text{
  padding: var(--nw-pad);
}
.page-news .iter-band-text h2{
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--white);
}
.page-news .iter-band-text p{
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: .95rem;
  color: var(--mist);
}
.page-news .iter-band-visual{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.page-news .iter-band-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.08) brightness(.72);
}
.page-news .iter-band-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,26,42,.85), rgba(10,26,42,0) 70%);
}
.page-news .timeline{
  margin-top: clamp(22px, 3.4vw, 34px);
}
.page-news .timeline h3{
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--white);
}
.page-news .timeline p{
  margin: 0;
  font-size: .92rem;
  line-height: 1.72;
  color: var(--mist);
}
.page-news .timeline .t-round{
  color: var(--gold);
}
@media (min-width: 880px){
  .page-news .iter-band{
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: stretch;
  }
  .page-news .iter-band-visual{
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* ---------- 归档 ---------- */
.page-news .archive-inner{
  display: grid;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--nw-edge);
  background: linear-gradient(150deg, rgba(18,48,74,.92), rgba(10,26,42,.97) 68%);
}
.page-news .archive-copy{
  padding: var(--nw-pad);
}
.page-news .archive-copy h2{
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--white);
}
.page-news .archive-copy p{
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: .95rem;
  color: var(--mist);
}
.page-news .archive-links{
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-news .archive-links a{
  display: inline-block;
  font-size: .92rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(154,170,184,.42);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.page-news .archive-links a:hover{
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.page-news .archive-visual{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.page-news .archive-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.06) brightness(.74);
}
.page-news .archive-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,26,42,.6), rgba(10,26,42,0) 55%);
}
@media (min-width: 880px){
  .page-news .archive-inner{
    grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
    align-items: stretch;
  }
  .page-news .archive-visual{
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* ---------- 收尾 ---------- */
.page-news .news-close{
  margin-top: clamp(40px, 7vw, 76px);
  padding: var(--nw-pad);
  border-radius: var(--r-lg);
  border: 1px solid var(--nw-edge);
  background: linear-gradient(140deg, rgba(44,59,73,.58), rgba(10,26,42,.92) 70%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}
.page-news .news-close-text{
  flex: 1 1 22rem;
}
.page-news .news-close-text h2{
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--white);
}
.page-news .news-close-text p{
  margin: 10px 0 0;
  max-width: 56ch;
  font-size: .92rem;
  color: var(--mist);
}
.page-news .news-close-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 窄屏收口 ---------- */
@media (max-width: 560px){
  .page-news .entry--compact{
    grid-template-columns: minmax(0, 1fr);
    padding-left: 18px;
  }
  .page-news .entry-idx{
    padding-top: 0;
    font-size: .8rem;
  }
  .page-news .entry--compact::before{
    top: 24px;
  }
  .page-news .nf-legend{
    gap: 8px 12px;
  }
  .page-news .filter label{
    padding: 6px 13px;
    font-size: .8rem;
  }
}
</main>
