/* ===== 赛事专栏 /articles/ ===== */
.page-news {
  --news-card: linear-gradient(158deg, rgba(19, 41, 63, .94), rgba(11, 27, 43, .96));
  background: var(--night);
  color: var(--text);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.page-news h1,
.page-news h2,
.page-news h3 {
  margin: 0;
  color: var(--cream);
}

.page-news p {
  margin: 0;
}

.page-news .container {
  position: relative;
}

/* ---- 面包屑 ---- */
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55em;
  margin-bottom: clamp(18px, 2.6vw, 30px);
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, .48);
}

.page-news .breadcrumb a {
  color: rgba(244, 239, 230, .72);
  text-decoration: none;
  transition: color .2s ease;
}

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

/* ---- 通用章节头 ---- */
.page-news .section-head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.page-news .section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .9em;
}

.page-news .section-head__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.6vw, 2.45rem);
  line-height: 1.24;
  letter-spacing: .01em;
  margin: 0 0 .55em;
}

.page-news .section-head__lede {
  color: var(--text-dim);
  font-size: clamp(.95rem, 2.6vw, 1.05rem);
  line-height: 1.8;
}

/* ===================== 首屏 ===================== */
.page-news .news-hero {
  position: relative;
  padding: clamp(26px, 4vw, 48px) 0 clamp(40px, 6vw, 80px);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 40% at 82% 18%, rgba(47, 230, 200, .2), transparent 68%),
    radial-gradient(40% 36% at 8% 64%, rgba(255, 122, 41, .14), transparent 66%),
    linear-gradient(180deg, var(--deep) 0%, var(--night) 76%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 239, 230, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(76% 72% at 50% 4%, #000 0%, transparent 76%);
  mask-image: radial-gradient(76% 72% at 50% 4%, #000 0%, transparent 76%);
}

.page-news .news-hero .container {
  z-index: 1;
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
}

.page-news .news-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 9vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: .18em 0 .46em;
  color: var(--cream);
}

.page-news .news-hero__title strong {
  display: block;
  font-weight: 900;
  color: var(--cyan);
}

.page-news .news-hero__sub {
  max-width: 54ch;
  color: var(--text-dim);
  font-size: clamp(.96rem, 2.7vw, 1.1rem);
  line-height: 1.85;
}

.page-news .news-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  background: var(--deep);
}

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

.page-news .news-hero__metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(22px, 3.6vw, 40px) 0 0;
  padding: 0;
  background: var(--edge);
  border: 1px solid var(--edge);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-news .news-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(14px, 2.4vw, 22px) clamp(14px, 2.4vw, 24px);
  background: var(--deep);
}

.page-news .news-metric__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.page-news .news-metric__value em {
  margin-left: .28em;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .46em;
  color: rgba(244, 239, 230, .5);
}

.page-news .news-metric__label {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--text-dim);
}

/* ===================== 栏目索引 ===================== */
.page-news .news-cols {
  padding: clamp(46px, 6.4vw, 92px) 0 clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-cols__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.page-news .news-col {
  --col: var(--moss);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--news-card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--col);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .26s ease, border-color .26s ease;
}

.page-news .news-col:hover {
  transform: translateY(-4px);
  border-color: var(--col);
}

.page-news .news-col--moss { --col: var(--moss); }
.page-news .news-col--cyan { --col: var(--cyan); }
.page-news .news-col--clay { --col: var(--clay); }
.page-news .news-col--gold { --col: var(--gold); }

.page-news .news-col__no {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--col);
}

.page-news .news-col__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.16rem, 3.2vw, 1.45rem);
  letter-spacing: .02em;
  line-height: 1.3;
}

.page-news .news-col__desc {
  color: var(--text-dim);
  font-size: .94rem;
  line-height: 1.8;
}

.page-news .news-col__sample {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(38, 64, 90, .9);
  font-size: .83rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, .48);
}

.page-news .news-col__sample b {
  font-family: var(--font-mono);
  font-weight: 500;
  color: rgba(244, 239, 230, .8);
}

/* ===================== 条目流 ===================== */
.page-news .news-feed {
  padding: clamp(46px, 6.4vw, 92px) 0;
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-feed__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.page-news .news-feed__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.page-news .news-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(16px, 2.4vw, 22px) clamp(16px, 2.6vw, 26px);
  background: rgba(19, 41, 63, .5);
  border: 1px solid rgba(38, 64, 90, .78);
  border-radius: var(--r-md);
  transition: transform .26s ease, border-color .26s ease, background-color .26s ease;
}

.page-news .news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 230, 200, .5);
  background: rgba(19, 41, 63, .84);
}

.page-news .news-item__title {
  display: inline;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1rem, 2.7vw, 1.14rem);
  line-height: 1.6;
  color: var(--cream);
  background-image: linear-gradient(var(--cyan), var(--cyan));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size .32s cubic-bezier(.4, 0, .2, 1);
}

.page-news .news-item:hover .news-item__title,
.page-news .news-item:focus-within .news-item__title {
  background-size: 100% 2px;
}

.page-news .news-item__meta {
  margin-top: .55em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: .78rem;
  letter-spacing: .02em;
  color: rgba(244, 239, 230, .5);
}

/* ===================== 赛季时间线 ===================== */
.page-news .news-timeline {
  padding: clamp(46px, 6.4vw, 92px) 0;
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-timeline__stage {
  position: relative;
  border: 1px solid rgba(38, 64, 90, .75);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 41, 63, .86), rgba(11, 27, 43, .96));
}

.page-news .news-timeline__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .14;
  pointer-events: none;
}

.page-news .news-timeline__scroller {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 3vw, 36px) clamp(22px, 3vw, 32px);
  scrollbar-width: thin;
  scrollbar-color: var(--edge) transparent;
}

.page-news .news-timeline__scroller::-webkit-scrollbar {
  height: 6px;
}

.page-news .news-timeline__scroller::-webkit-scrollbar-thumb {
  background: var(--edge);
  border-radius: var(--r-pill);
}

.page-news .news-timeline__track {
  position: relative;
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  min-width: 680px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-timeline__track::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--edge), var(--clay) 26%, var(--cyan) 64%, var(--edge));
}

.page-news .news-timeline__node {
  position: relative;
  flex: 1 1 0;
  min-width: 126px;
  padding-top: 32px;
  outline: none;
}

.page-news .news-timeline__node::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--night);
  border: 2px solid var(--clay);
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.page-news .news-timeline__node:hover::before,
.page-news .news-timeline__node:focus-visible::before {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(47, 230, 200, .16);
}

.page-news .news-timeline__phase {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-serif);
  font-size: clamp(.98rem, 2.6vw, 1.1rem);
  color: var(--cream);
}

.page-news .news-timeline__count {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: rgba(244, 239, 230, .55);
  opacity: 1;
  transition: opacity .25s ease, color .25s ease;
}

.page-news .news-timeline__count b {
  font-size: 1.08rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
}

.page-news .news-timeline__node:hover .news-timeline__count,
.page-news .news-timeline__node:focus-visible .news-timeline__count {
  opacity: 1;
  color: var(--cyan);
}

/* ===================== 专题系列 ===================== */
.page-news .news-series {
  padding: clamp(46px, 6.4vw, 92px) 0;
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-series__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}

.page-news .series-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--news-card);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  transition: border-color .26s ease;
}

.page-news .series-feature:hover {
  border-color: rgba(232, 200, 122, .55);
}

.page-news .series-feature__cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--deep);
}

.page-news .series-feature__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.page-news .series-feature:hover .series-feature__cover img {
  transform: scale(1.04);
}

.page-news .series-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: rgba(11, 27, 43, .84);
  border: 1px solid rgba(232, 200, 122, .55);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .73rem;
  letter-spacing: .08em;
}

.page-news .series-feature__body {
  padding: clamp(18px, 2.6vw, 28px);
}

.page-news .series-feature__body .news-col__desc {
  margin-top: .7em;
}

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

.page-news .series-mini {
  display: flex;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 22px);
  background: rgba(19, 41, 63, .55);
  border: 1px solid rgba(38, 64, 90, .82);
  border-radius: var(--r-md);
  transition: transform .26s ease, border-color .26s ease;
}

.page-news .series-mini:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 200, 122, .5);
}

.page-news .series-mini__no {
  flex: 0 0 auto;
  padding-top: 4px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--gold);
}

.page-news .series-mini .news-col__desc {
  margin-top: .55em;
  font-size: .9rem;
}

/* ===================== 取材路径 ===================== */
.page-news .news-method {
  padding: clamp(46px, 6.4vw, 92px) 0;
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-method__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 42px);
}

.page-news .news-method__intro .section-head__title {
  margin-top: .12em;
}

.page-news .disclosure-group {
  margin-top: clamp(20px, 3vw, 30px);
}

.page-news .disclosure {
  background: rgba(19, 41, 63, .45);
  border: 1px solid rgba(38, 64, 90, .82);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-news .disclosure + .disclosure {
  margin-top: 10px;
}

.page-news .disclosure__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.4vw, 22px);
  background: transparent;
  border: 0;
  border-left: 3px solid rgba(38, 64, 90, 1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .97rem;
  text-align: left;
  cursor: pointer;
  transition: background-color .2s ease, border-left-color .2s ease;
}

.page-news .disclosure__trigger:hover {
  background: rgba(19, 41, 63, .78);
}

.page-news .disclosure[data-open="true"] .disclosure__trigger {
  border-left-color: var(--cyan);
}

.page-news .disclosure__step {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--cyan);
}

.page-news .disclosure__label {
  line-height: 1.55;
}

.page-news .disclosure__panel {
  padding: 0 clamp(16px, 2.4vw, 22px) clamp(16px, 2.2vw, 20px);
  color: var(--text-dim);
  font-size: .91rem;
  line-height: 1.8;
}

.page-news .news-method__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  background: var(--deep);
  box-shadow: var(--shadow-soft);
}

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

.page-news .news-method__figure figcaption {
  padding: 14px clamp(14px, 2vw, 20px) 18px;
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, .5);
  border-top: 1px solid rgba(38, 64, 90, .7);
}

/* ===================== 回访引导 ===================== */
.page-news .news-return {
  padding: clamp(48px, 6.6vw, 96px) 0 0;
  border-top: 1px solid rgba(38, 64, 90, .6);
}

.page-news .news-return__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(47, 230, 200, .3);
  border-radius: var(--r-lg);
  background:
    radial-gradient(66% 118% at 88% 0%, rgba(47, 230, 200, .15), transparent 62%),
    linear-gradient(150deg, var(--deep), var(--night));
}

.page-news .news-return__panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(47, 230, 200, .18);
  pointer-events: none;
}

.page-news .news-return__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.8vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

.page-news .news-return__text {
  max-width: 62ch;
  color: var(--text-dim);
  font-size: .97rem;
  line-height: 1.85;
}

.page-news .news-return__links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 30px);
}

/* ===================== 媒体查询 ===================== */
@media (min-width: 700px) {
  .page-news .news-cols__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-item {
    flex-direction: row;
    align-items: baseline;
    gap: clamp(14px, 2.4vw, 26px);
  }

  .page-news .news-item > .chip {
    flex: 0 0 6.6em;
    min-width: 6.6em;
    text-align: center;
  }
}

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

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

  .page-news .news-hero__head {
    grid-column: 1 / 8;
    padding-top: clamp(10px, 2vw, 26px);
  }

  .page-news .news-hero__media {
    grid-column: 8 / 13;
    aspect-ratio: 4 / 5;
  }

  .page-news .news-hero__metrics {
    grid-column: 1 / 13;
  }

  .page-news .news-item:nth-child(even) {
    margin-left: clamp(24px, 6vw, 76px);
  }

  .page-news .news-series__grid {
    grid-template-columns: 1.08fr .92fr;
    align-items: start;
  }

  .page-news .news-method__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(28px, 4vw, 56px);
  }

  .page-news .news-method__figure {
    position: sticky;
    top: 104px;
  }
}

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

  .page-news .news-col--a { grid-column: span 6; }
  .page-news .news-col--b { grid-column: span 6; }
  .page-news .news-col--c { grid-column: span 5; }
  .page-news .news-col--d { grid-column: span 7; }
}

@media (hover: hover) and (pointer: fine) {
  .page-news .news-timeline__count {
    opacity: .38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-col,
  .page-news .news-item,
  .page-news .series-mini,
  .page-news .series-feature__cover img,
  .page-news .news-item__title,
  .page-news .news-timeline__node::before {
    transition: none;
  }
}
</｜｜DSML｜｜ parameter>
</｜｜DSML｜｜ invoke>
</｜｜DSML｜｜ calls>
