/* ================= page-news ================= */
.page-news {
  display: block;
  overflow-x: clip;
}

/* ---------- 头部 ---------- */
.page-news .news-hero-ink {
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding: 18px 0 54px;
  color: var(--on-ink);
}

.page-news .news-hero .breadcrumb {
  margin: 0 0 28px;
}
.page-news .news-hero .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.page-news .news-hero .breadcrumb li + li::before {
  content: "／";
  margin-right: 8px;
  color: var(--on-ink-faint);
}
.page-news .news-hero .breadcrumb a {
  color: var(--on-ink-dim);
  text-decoration: none;
  transition: color 160ms var(--ease-out);
}
.page-news .news-hero .breadcrumb a:hover,
.page-news .news-hero .breadcrumb a:focus-visible {
  color: var(--orange-2);
}
.page-news .news-hero .breadcrumb [aria-current="page"] {
  color: var(--on-ink);
}

.page-news .news-hero-grid {
  display: grid;
  gap: 32px;
}

.page-news .news-hero .eyebrow {
  color: var(--orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

.page-news .news-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 6.4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--paper);
}

.page-news .news-hero-lede {
  margin: 0;
  max-width: 44em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--on-ink);
}

.page-news .news-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
}
.page-news .news-hero-fact {
  border-top: 1px solid rgba(212, 226, 221, 0.2);
  padding-top: 12px;
}
.page-news .news-hero-fact dt {
  margin: 0 0 4px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--on-ink-dim);
}
.page-news .news-hero-fact dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--on-ink);
}
.page-news .stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 19px;
  color: var(--orange);
  letter-spacing: 0.01em;
}

.page-news .news-hero-figure {
  width: min(var(--shell-max), 100% - var(--gutter) * 2);
  margin: 26px auto 0;
}
.page-news .news-hero-figure .figure-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-3);
}
.page-news .news-hero-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-hero-figure .figure-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--note);
}

/* ---------- 横向筛选带 ---------- */
.page-news .news-rail {
  margin-top: 34px;
}
.page-news .news-rail .rail-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.page-news .news-rail .rail-chip {
  flex: 0 0 auto;
  scroll-snap-align: center;
  white-space: nowrap;
}
.page-news .news-rail .rail-track::-webkit-scrollbar {
  height: 4px;
}
.page-news .news-rail .rail-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: var(--r-pill);
}

/* ---------- 本季更新：非对称双栏 ---------- */
.page-news .news-main-grid {
  display: grid;
  gap: 40px;
}

.page-news .news-side {
  border-radius: var(--r-lg);
  background: var(--row);
  padding: 24px 22px 22px;
}
.page-news .news-side-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.page-news .news-series-index {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-series-index li + li {
  border-top: 1px solid var(--line);
}
.page-news .news-series-index a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  text-decoration: none;
  color: var(--text);
  transition: color 160ms var(--ease-out);
}
.page-news .news-series-index a:hover,
.page-news .news-series-index a:focus-visible {
  color: var(--orange);
}
.page-news .news-side-name {
  font-size: 15px;
  font-weight: 600;
}
.page-news .news-series-index em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--note);
  font-family: var(--font-mono);
}
.page-news .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.page-news .dot-wine { background: var(--wine); }
.page-news .dot-orange { background: var(--orange); }
.page-news .dot-indigo { background: var(--indigo); }

.page-news .news-side-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  line-height: 1.7;
  color: var(--note);
}

.page-news .section-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}

.page-news .news-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.page-news .news-item {
  position: relative;
  padding: 24px 0 24px 20px;
  border-top: 1px solid var(--line);
}
.page-news .news-item:first-child {
  border-top: 2px solid var(--ink);
}
.page-news .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.page-news .news-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.page-news .news-item-time {
  font-size: 12.5px;
  color: var(--note);
  font-family: var(--font-mono);
}
.page-news .news-item-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--text);
}
.page-news .news-item-summary {
  margin: 0 0 12px;
  max-width: 46em;
  font-size: 14.5px;
  line-height: 1.8;
  color: #3B4A46;
}
.page-news .news-item-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}
.page-news .news-item-code {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--row);
  border-radius: var(--r-pill);
  padding: 3px 12px;
}
.page-news .news-item-meta {
  font-size: 12.5px;
  color: var(--note);
}

/* ---------- 通用胶囊 ---------- */
.page-news .chip {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.page-news .chip-wine {
  background: rgba(142, 31, 63, 0.1);
  color: var(--wine);
}
.page-news .chip-orange {
  background: rgba(255, 90, 43, 0.12);
  color: #C33A12;
}
.page-news .chip-indigo {
  background: rgba(46, 42, 92, 0.1);
  color: var(--indigo);
}

/* ---------- 球迷组织案例合集 ---------- */
.page-news .news-stand {
  background: var(--paper);
}
.page-news .news-stand-lede {
  margin: 14px 0 0;
  max-width: 48em;
  font-size: 15.5px;
  line-height: 1.85;
  color: #3B4A46;
}
.page-news .news-stand-figure {
  margin: 32px 0 0;
}
.page-news .news-stand-figure .figure-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--row);
}
.page-news .news-stand-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-stand-figure .figure-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--note);
}

.page-news .stand-timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 0 0 0 26px;
  position: relative;
}
.page-news .stand-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.page-news .stand-entry {
  position: relative;
  padding: 0 0 34px;
}
.page-news .stand-entry:last-child {
  padding-bottom: 0;
}
.page-news .stand-node {
  position: absolute;
  left: -26px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--paper);
}
.page-news .stand-node.is-alt {
  background: var(--wine);
}
.page-news .stand-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.page-news .stand-city {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--note);
}
.page-news .stand-body h3 {
  margin: 0 0 8px;
  font-size: 17.5px;
  line-height: 1.45;
  color: var(--text);
}
.page-news .stand-body p {
  margin: 0 0 12px;
  max-width: 46em;
  font-size: 14.5px;
  line-height: 1.8;
  color: #3B4A46;
}

/* ---------- 赛季观察 ---------- */
.page-news .observe-grid {
  display: grid;
  gap: 36px;
}
.page-news .observe-rail h2 {
  margin: 6px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}
.page-news .observe-rail > p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: #3B4A46;
}
.page-news .observe-figure {
  margin: 0;
}
.page-news .observe-figure .figure-media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--row);
}
.page-news .observe-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .observe-figure .figure-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--note);
}

.page-news .observe-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .observe-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.page-news .observe-item:first-child {
  border-top: 2px solid var(--ink);
}
.page-news .observe-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.page-news .observe-range {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--note);
}
.page-news .observe-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
}
.page-news .observe-item p {
  margin: 0;
  max-width: 46em;
  font-size: 14.5px;
  line-height: 1.85;
  color: #3B4A46;
}

/* ---------- 战报归档 ---------- */
.page-news .news-report {
  background: var(--paper);
}
.page-news .report-grid {
  display: grid;
  gap: 36px;
}
.page-news .report-main h2 {
  margin: 6px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}
.page-news .report-main > p {
  margin: 0 0 26px;
  max-width: 46em;
  font-size: 15px;
  line-height: 1.85;
  color: #3B4A46;
}
.page-news .report-rounds {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .report-rounds li + li {
  margin-top: 12px;
}
.page-news .report-details {
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line);
}
.page-news .report-details summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  transition: background 160ms var(--ease-out);
}
.page-news .report-details summary::-webkit-details-marker {
  display: none;
}
.page-news .report-details summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--orange);
  transition: transform 220ms var(--ease-out);
}
.page-news .report-details[open] summary::after {
  content: "−";
}
.page-news .report-details summary:hover {
  background: rgba(255, 90, 43, 0.06);
}
.page-news .report-details summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
.page-news .report-round {
  font-weight: 700;
  color: var(--ink);
}
.page-news .report-league {
  font-size: 13px;
  color: var(--note);
  background: var(--row);
  border-radius: var(--r-pill);
  padding: 2px 10px;
}
.page-news .report-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--note);
}
.page-news .report-details[open] summary {
  border-bottom: 1px solid var(--line);
}
.page-news .report-body {
  padding: 16px 18px 18px;
}
.page-news .report-body p {
  margin: 0;
  max-width: 44em;
  font-size: 14.5px;
  line-height: 1.85;
  color: #3B4A46;
}
.page-news .report-figure {
  margin: 0;
}
.page-news .report-figure .figure-media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--row);
}
.page-news .report-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .report-figure .figure-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--note);
}

/* ---------- 系列与更新节奏 ---------- */
.page-news .series-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.page-news .series-item {
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  color: var(--paper);
}
.page-news .series-item-wine {
  background: var(--wine);
}
.page-news .series-item-orange {
  background: linear-gradient(150deg, var(--orange) 0%, #E04218 100%);
}
.page-news .series-item-indigo {
  background: var(--indigo);
}
.page-news .series-item-green {
  background: var(--ink-2);
}
.page-news .series-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--paper);
}
.page-news .series-item p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 247, 244, 0.82);
}
.page-news .series-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 247, 244, 0.25);
}
.page-news .series-meta dt {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(244, 247, 244, 0.66);
  margin-bottom: 2px;
}
.page-news .series-meta dd {
  margin: 0;
  font-size: 14px;
  color: var(--paper);
}
.page-news .series-item .stat-num {
  color: var(--paper);
}

/* ---------- 线索与投稿 ---------- */
.page-news .news-pitch {
  background: var(--row);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.page-news .pitch-grid {
  display: grid;
  gap: 36px;
}
.page-news .pitch-copy h2 {
  margin: 6px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}
.page-news .pitch-copy p {
  margin: 0 0 16px;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.85;
  color: #3B4A46;
}
.page-news .pitch-copy .btn {
  margin-top: 8px;
}

.page-news .pitch-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-news .pitch-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.page-news .pitch-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}
.page-news .pitch-steps h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
}
.page-news .pitch-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--note);
}

/* ---------- 交叉入口 ---------- */
.page-news .news-cross {
  padding-bottom: 88px;
}
.page-news .cross-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-news .cross-list a {
  display: block;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--paper);
  border-left: 4px solid var(--orange);
  text-decoration: none;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.page-news .cross-list a:hover,
.page-news .cross-list a:focus-visible {
  background: #fff;
  transform: translateX(3px);
}
.page-news .cross-list strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.page-news .cross-list span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: var(--note);
}

/* ---------- 桌面栅格 ---------- */
@media (min-width: 860px) {
  .page-news .news-hero-ink {
    padding: 22px 0 62px;
  }
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 56px;
    align-items: end;
  }
  .page-news .news-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
  }
  .page-news .news-hero-figure {
    margin-top: 34px;
  }

  .page-news .news-main-grid {
    grid-template-columns: 3fr 9fr;
    gap: 56px;
  }

  .page-news .observe-grid {
    grid-template-columns: 4fr 8fr;
    gap: 56px;
    align-items: start;
  }

  .page-news .report-grid {
    grid-template-columns: 8fr 4fr;
    gap: 56px;
    align-items: start;
  }

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

  .page-news .pitch-grid {
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: start;
  }

  .page-news .cross-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1180px) {
  .page-news .series-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-news .news-main-grid {
    grid-template-columns: 3.2fr 8.8fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .cross-list a {
    transition: none;
  }
  .page-news .report-details summary::after {
    transition: none;
  }
}
<<<END>>>
