/* ===== 赛场观察 /articles/ 页面专属样式 ===== */
.page-news {
  --news-rail-w: 196px;
  --news-green: #3DF28A;
  --news-wine: #D0618A;
  --news-violet: #8B5CF6;
  --news-teal: #2FBF9E;
  --news-amber: #FFA23A;
}

.page-news .news-hero {
  padding-top: 8px;
}

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

.page-news .news-hero__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--news-amber);
  text-transform: uppercase;
}

.page-news .news-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 13vw, 88px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-news .news-hero__lede {
  margin: 0 0 22px;
  max-width: 58ch;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
}

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

.page-news .news-hero__figure {
  margin: 0;
}

.page-news .news-hero__figure .figure__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--panel);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-hard);
}

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

.page-news .figure__caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- 双栏骨架：左侧常驻栏目轨道 ---- */
.page-news .news-layout {
  display: grid;
  gap: 30px;
}

.page-news .news-rail {
  padding: 16px;
  background: var(--panel);
  border: 2px solid var(--line);
}

.page-news .news-rail__title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--news-amber);
}

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

.page-news .news-rail__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.page-news .news-rail__link:hover,
.page-news .news-rail__link:focus-visible {
  border-color: var(--news-green);
  color: var(--news-green);
}

.page-news .news-rail__idx {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--muted);
}

.page-news .news-rail__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- 区块通用 ---- */
.page-news .news-block {
  scroll-margin-top: 84px;
}

.page-news .news-block > .plate {
  margin-bottom: 18px;
}

.page-news .news-block__lede {
  margin: 0 0 20px;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---- 01 栏目导航 ---- */
.page-news .col-tags {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .col-tag {
  background: var(--panel);
  border: 2px solid var(--line);
  border-top-width: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.page-news .col-tag a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.page-news .col-tag:hover,
.page-news .col-tag:focus-within {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--line);
}

.page-news .col-tag--green { border-top-color: var(--news-green); }
.page-news .col-tag--wine { border-top-color: var(--news-wine); }
.page-news .col-tag--violet { border-top-color: var(--news-violet); }
.page-news .col-tag--teal { border-top-color: var(--news-teal); }
.page-news .col-tag--amber { border-top-color: var(--news-amber); }

.page-news .col-tag__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.page-news .col-tag__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .col-tag__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--news-amber);
}

/* ---- 02 条目列表 ---- */
.page-news .entry-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .entry {
  padding: 18px 18px 14px;
  background: var(--panel);
  border: 2px solid var(--line);
  border-left: 6px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-left-width 0.22s var(--ease);
}

.page-news .entry:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--line);
}

.page-news .entry--green { border-left-color: var(--news-green); }
.page-news .entry--wine { border-left-color: var(--news-wine); }
.page-news .entry--violet { border-left-color: var(--news-violet); }
.page-news .entry--teal { border-left-color: var(--news-teal); }
.page-news .entry--amber { border-left-color: var(--news-amber); }

.page-news .entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .entry__index {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
}

.page-news .entry__col {
  padding: 3px 9px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text);
}

.page-news .entry--green .entry__col { border-color: var(--news-green); color: var(--news-green); }
.page-news .entry--wine .entry__col { border-color: var(--news-wine); color: var(--news-wine); }
.page-news .entry--violet .entry__col { border-color: var(--news-violet); color: var(--news-violet); }
.page-news .entry--teal .entry__col { border-color: var(--news-teal); color: var(--news-teal); }
.page-news .entry--amber .entry__col { border-color: var(--news-amber); color: var(--news-amber); }

.page-news .entry__time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-news .entry__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-news .entry__summary {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
}

.page-news .entry__foot {
  margin: 0;
  display: flex;
  gap: 8px;
}

/* ---- 03 签表分析系列 ---- */
.page-news .series-media {
  margin: 0 0 20px;
}

.page-news .series-media .figure__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--panel);
  border: 2px solid var(--line);
}

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

.page-news .series-track {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 4px 4px 14px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-news .series-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  padding: 16px;
  background: var(--panel);
  border: 2px solid var(--line);
  border-top: 6px solid var(--news-wine);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.page-news .series-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--line);
}

.page-news .series-card__round {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--news-wine);
}

.page-news .series-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.34;
  color: var(--text);
}

.page-news .series-card__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.page-news .series-card__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--news-amber);
}

/* ---- 04 名单变动追踪 ---- */
.page-news .roster {
  display: grid;
  gap: 24px;
}

.page-news .track {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
  border-left: 2px solid var(--line);
}

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

.page-news .track__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -31px;
  width: 12px;
  height: 12px;
  background: var(--news-violet);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 2px var(--line);
}

.page-news .track__stage {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--news-amber);
}

.page-news .track__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.34;
  color: var(--text);
}

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

.page-news .roster__figure {
  margin: 0;
}

.page-news .roster__figure .figure__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

/* ---- 05 俱乐部编年专题 ---- */
.page-news .chronicle {
  display: grid;
  gap: 26px;
}

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

.page-news .volume {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}

.page-news .volume:hover {
  background: rgba(47, 191, 158, 0.07);
}

.page-news .volume__no {
  flex: 0 0 54px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--news-teal);
}

.page-news .volume__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.38;
  color: var(--text);
}

.page-news .volume__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.76;
  color: var(--muted);
}

.page-news .chronicle__aside {
  margin: 0;
}

.page-news .chronicle__aside .figure__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--panel);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-hard);
}

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

/* ---- 06 赛季数据回顾 ---- */
.page-news .stats {
  display: grid;
  gap: 14px;
}

.page-news .stat {
  padding: 18px 16px;
  background: var(--ink);
  border: 2px solid var(--line);
  border-bottom: 6px solid var(--news-amber);
}

.page-news .stat__num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.page-news .stat__num small {
  margin-left: 4px;
  font-size: 0.42em;
  font-weight: 600;
  color: var(--news-amber);
}

.page-news .stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---- 07 订阅与投稿 ---- */
.page-news .subscribe {
  display: grid;
  gap: 22px;
  padding: 22px 18px;
  background: var(--panel);
  border: 2px solid var(--news-green);
  box-shadow: var(--shadow-hard);
}

.page-news .subscribe__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--text);
}

.page-news .subscribe__text {
  margin: 0 0 20px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-news .subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .rhythm {
  margin: 0;
}

.page-news .rhythm__term {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--news-green);
}

.page-news .rhythm__desc {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--muted);
}

.page-news .rhythm__desc:last-child {
  margin-bottom: 0;
}

/* ---- 断点 ---- */
@media (min-width: 640px) {
  .page-news .col-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-news .series-card {
    flex: 0 0 300px;
  }

  .page-news .entry {
    padding: 22px 24px 18px;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 46px;
    align-items: end;
  }

  .page-news .roster {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 34px;
    align-items: start;
  }

  .page-news .chronicle {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 38px;
    align-items: start;
  }

  .page-news .subscribe {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: var(--news-rail-w) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .page-news .news-rail {
    position: sticky;
    top: 24px;
    box-shadow: var(--shadow-soft);
  }

  .page-news .news-rail__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .page-news .news-rail__link {
    justify-content: flex-start;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .page-news .news-rail__link:hover,
  .page-news .news-rail__link:focus-visible {
    padding-left: 6px;
    color: var(--news-green);
  }

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

  .page-news .col-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
<<<END>>>
