/* ===== 资讯中心 / information ===== */
.page-news {
  --news-hair: rgba(53, 242, 196, 0.22);
  --news-hair-soft: rgba(232, 243, 238, 0.14);
  --news-card: rgba(18, 69, 47, 0.62);
  --news-card-hi: rgba(13, 53, 41, 0.92);
  --news-panel: rgba(10, 43, 34, 0.86);
}

.page-news .breadcrumb {
  padding-block: 1.1rem 0.4rem;
  font-size: 0.8rem;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.25rem, 3.5vw, 2.25rem) clamp(2rem, 5vw, 3.25rem);
  background:
    radial-gradient(115% 85% at 8% -10%, rgba(53, 242, 196, 0.15), transparent 58%),
    radial-gradient(80% 70% at 100% 12%, rgba(47, 107, 255, 0.12), transparent 62%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-lift) 58%, var(--deep) 100%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, var(--gridline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gridline) 1px, transparent 1px);
  background-size: 72px 72px;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}

.page-news .news-hero__lede h1 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(1.85rem, 5.4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-news .news-hero__lede .lede {
  max-width: 56ch;
  margin: 0;
  color: rgba(232, 243, 238, 0.76);
}

.page-news .news-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--news-hair-soft);
  border: 1px solid var(--news-hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.95rem 1.05rem 1.1rem;
  background: var(--news-panel);
}

.page-news .news-stat__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  line-height: 1;
  color: var(--cyan);
}

.page-news .news-stat__num em {
  font-style: normal;
  font-size: 0.6em;
  margin-left: 1px;
  color: var(--gold);
}

.page-news .news-stat__label {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(232, 243, 238, 0.7);
}

/* ---------- 赛季进度轴 ---------- */
.page-news .news-axis {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.page-news .news-axis__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.1rem;
  margin-bottom: 0.5rem;
}

.page-news .news-axis__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

.page-news .news-axis__track {
  display: flex;
  margin: 0;
  padding: 1.15rem 0 1.5rem;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border-top: 1px solid var(--news-hair);
  scroll-snap-type: x proximity;
}

.page-news .news-axis__track::-webkit-scrollbar {
  height: 4px;
}

.page-news .news-axis__track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px;
}

.page-news .news-axis__track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-news .news-axis__node {
  position: relative;
  flex: 0 0 auto;
  width: min(220px, 66vw);
  padding: 0.9rem 1.15rem 0 1.15rem;
  scroll-snap-align: start;
  border-left: 1px solid var(--news-hair-soft);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-news .news-axis__node::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 22px;
  background: var(--cyan);
}

.page-news .news-axis__node--key::before {
  height: 40px;
  background: var(--gold);
}

.page-news .news-axis__idx {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--slate);
}

.page-news .news-axis__stage {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--mist);
}

.page-news .news-axis__node--key .news-axis__stage {
  color: var(--gold);
}

.page-news .news-axis__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(232, 243, 238, 0.62);
}

/* ---------- 本周赔率解读 ---------- */
.page-news .news-odds {
  padding-block: clamp(2.5rem, 6vw, 4.25rem);
}

.page-news .news-sechead {
  max-width: 64ch;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.page-news .news-sechead--tight {
  margin-bottom: clamp(1.1rem, 2.6vw, 1.75rem);
}

.page-news .news-sechead .section-heading {
  margin: 0.4rem 0 0;
  color: var(--mist);
}

.page-news .news-sechead .lede {
  margin: 0.7rem 0 0;
  color: rgba(232, 243, 238, 0.74);
}

.page-news .news-odds__top {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 3.5vw, 2.35rem);
}

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

.page-news .news-odds__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4;
  object-fit: cover;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--deep-mid), var(--deep));
}

.page-news .news-odds__figure figcaption {
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(232, 243, 238, 0.5);
}

.page-news .news-issues {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--news-hair-soft);
  border: 1px solid var(--news-hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-issue {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: var(--news-card);
  transition: background 160ms var(--ease);
}

.page-news .news-issue:hover {
  background: var(--news-card-hi);
}

.page-news .news-issue__stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.page-news .news-issue__stamp::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 242, 196, 0.16);
}

.page-news .news-issue--current .news-issue__stamp {
  color: var(--gold);
}

.page-news .news-issue--current .news-issue__stamp::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.2);
}

.page-news .news-issue__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
  color: var(--mist);
}

.page-news .news-issue__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(232, 243, 238, 0.74);
}

.page-news .news-issue__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(232, 243, 238, 0.6);
}

.page-news .news-issue__list li {
  position: relative;
  padding-left: 1rem;
}

.page-news .news-issue__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 1px;
  background: var(--blue);
}

.page-news .news-spark {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: auto;
}

/* ---------- 归档 ---------- */
.page-news .news-archive {
  padding-block: clamp(2.5rem, 6vw, 4.25rem);
  background: linear-gradient(180deg, var(--deep) 0%, var(--deep-lift) 100%);
}

.page-news .news-archive__body {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.page-news .news-tagrail__label {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--slate);
}

.page-news .news-tagrail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-news .news-tagrail a.tag {
  text-decoration: none;
}

.page-news .news-archive__main {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  min-width: 0;
}

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

.page-news .news-archive__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--news-hair-soft);
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--deep-mid), var(--deep));
}

.page-news .news-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 1;
  column-gap: 1.1rem;
}

.page-news .news-card {
  break-inside: avoid;
  margin: 0 0 1.1rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: var(--news-card);
  border: 1px solid var(--news-hair-soft);
  border-radius: var(--radius);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  border-color: var(--news-hair);
}

.page-news .news-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.7rem;
  margin-bottom: 0.65rem;
}

.page-news .news-card__no {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.page-news .news-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--mist);
}

.page-news .news-card__text {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(232, 243, 238, 0.7);
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.85rem;
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--news-hair-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(232, 243, 238, 0.48);
}

/* ---------- 观察方法 ---------- */
.page-news .news-method {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, var(--mist) 0%, #DCEAE4 100%);
  color: var(--ink);
}

.page-news .news-method .eyebrow {
  color: var(--deep-mid);
}

.page-news .news-method .section-heading {
  margin: 0.4rem 0 0.75rem;
  color: var(--ink);
}

.page-news .news-method__lead p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(14, 21, 19, 0.74);
}

.page-news .news-method__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

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

.page-news .news-method__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  border: 1px solid rgba(14, 21, 19, 0.12);
  border-radius: var(--radius);
  background: var(--deep);
}

.page-news .news-method__list {
  list-style: none;
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(14, 21, 19, 0.12);
  border: 1px solid rgba(14, 21, 19, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-method__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.62);
}

.page-news .news-method__no {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.page-news .news-method__name {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
}

.page-news .news-method__item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(14, 21, 19, 0.7);
}

/* ---------- 每周简报 ---------- */
.page-news .news-brief {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(85% 70% at 88% 8%, rgba(47, 107, 255, 0.18), transparent 62%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-mid) 100%);
}

.page-news .news-brief__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.page-news .news-brief__body .eyebrow {
  color: var(--cyan);
}

.page-news .news-brief__body .section-heading {
  margin: 0.4rem 0 0.75rem;
  color: var(--mist);
}

.page-news .news-brief__body > p {
  margin: 0;
  max-width: 54ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(232, 243, 238, 0.76);
}

.page-news .news-brief__list {
  list-style: none;
  margin: 1.1rem 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.page-news .news-brief__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.89rem;
  line-height: 1.72;
  color: rgba(232, 243, 238, 0.74);
}

.page-news .news-brief__list li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--cyan);
}

.page-news .news-brief__body .note {
  margin: 0;
  max-width: 56ch;
  color: rgba(232, 243, 238, 0.52);
}

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

.page-news .news-brief__figure img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--deep-mid), var(--deep-lift));
}

/* ---------- 延伸入口 ---------- */
.page-news .news-routes {
  padding-block: clamp(2rem, 4.5vw, 3rem);
}

.page-news .news-routes ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--news-hair-soft);
  border: 1px solid var(--news-hair-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-routes li {
  background: rgba(18, 69, 47, 0.5);
}

.page-news .news-routes a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: 1.15rem 1.25rem 1.35rem;
  text-decoration: none;
  transition: background 160ms var(--ease);
}

.page-news .news-routes a:hover {
  background: rgba(53, 242, 196, 0.08);
}

.page-news .news-routes__no {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.page-news .news-routes__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mist);
}

.page-news .news-routes__desc {
  font-size: 0.82rem;
  line-height: 1.68;
  color: rgba(232, 243, 238, 0.64);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-news .news-cards {
    column-count: 2;
  }
}

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

  .page-news .news-routes ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .page-news .news-brief__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-news .news-odds__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .page-news .news-archive__body {
    grid-template-columns: minmax(0, 186px) minmax(0, 1fr);
    align-items: start;
  }

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

  .page-news .news-tagrail ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-news .news-archive__figure img {
    aspect-ratio: 16 / 7;
  }

  .page-news .news-method__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .page-news .news-method__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
</main>
<<<END>>>
</main>
