.page-news {
  --news-radius: 16px;
  position: relative;
  background: var(--ink);
  color: var(--mist);
}

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

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb {
  position: relative;
  z-index: 3;
  padding-block: 1.5rem 0.25rem;
}

.page-news .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--sage);
}

.page-news .breadcrumb__list li + li::before {
  content: "/";
  margin-inline-end: 0.55rem;
  color: var(--sage);
  opacity: 0.55;
}

.page-news .breadcrumb__list a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumb__list a:hover {
  color: var(--lime);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.75rem, 7vw, 5.25rem) clamp(3.25rem, 8vw, 6.5rem);
}

.page-news .news-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-news .news-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(0.72) brightness(0.52);
}

.page-news .news-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(135% 95% at 8% 4%, rgba(5, 32, 26, 0.62) 0%, rgba(5, 32, 26, 0.93) 58%, var(--ink) 100%),
    linear-gradient(to bottom, rgba(5, 32, 26, 0.7), rgba(5, 32, 26, 0.98));
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-hero h1 {
  margin: 0 0 1.05rem;
  max-width: 21ch;
  font-family: var(--font-head);
  font-size: clamp(2.05rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--mist);
}

.page-news .news-hero .lede {
  max-width: 36rem;
  margin: 0;
  color: rgba(232, 241, 236, 0.86);
}

.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.65rem;
}

/* ---------- 赛季阶段进度带 ---------- */
.page-news .season-band {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 clamp(1.85rem, 5vw, 2.9rem);
  padding: 0 0 0.4rem;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.page-news .season-band::-webkit-scrollbar {
  display: none;
}

.page-news .season-step {
  flex: 1 0 7.75rem;
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.72rem 0.78rem 0.85rem;
  border-radius: 10px;
  background: rgba(12, 16, 14, 0.52);
  border: 1px solid rgba(126, 150, 140, 0.18);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-news .season-step__bar {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: rgba(126, 150, 140, 0.28);
}

.page-news .season-step__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--mist);
}

.page-news .season-step__note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--sage);
}

.page-news .season-step.is-done .season-step__bar {
  background: var(--sage);
}

.page-news .season-step.is-done .season-step__name {
  color: rgba(232, 241, 236, 0.82);
}

.page-news .season-step.is-current {
  background: rgba(15, 51, 43, 0.76);
  border-color: rgba(200, 255, 77, 0.42);
  box-shadow: 0 14px 34px -22px rgba(200, 255, 77, 0.6);
}

.page-news .season-step.is-current .season-step__bar {
  background: var(--lime);
  animation: news-pulse 2.4s ease-in-out infinite;
}

.page-news .season-step.is-current .season-step__name {
  color: var(--lime);
}

@keyframes news-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200, 255, 77, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(200, 255, 77, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .season-step.is-current .season-step__bar {
    animation: none;
  }
}

/* ---------- 章节留白 ---------- */
.page-news .entries,
.page-news .series,
.page-news .subscribe,
.page-news .trace {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

/* ---------- 条目卡片流 ---------- */
.page-news .entries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.page-news .entry {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: var(--news-radius);
  background: linear-gradient(160deg, rgba(15, 51, 43, 0.9), rgba(12, 16, 14, 0.94));
  border: 1px solid rgba(126, 150, 140, 0.16);
  box-shadow: 0 18px 42px -34px rgba(0, 0, 0, 0.95);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  --entry-accent: var(--sage);
}

.page-news .entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 2px;
  border-radius: 99px;
  background: var(--entry-accent);
  opacity: 0.85;
}

.page-news .entry:hover,
.page-news .entry:focus-within {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 77, 0.26);
  box-shadow: 0 30px 56px -34px rgba(0, 0, 0, 1);
}

.page-news .entry--wine { --entry-accent: #D9647F; }
.page-news .entry--gold { --entry-accent: var(--gold); }
.page-news .entry--indigo { --entry-accent: #7A7AD6; }
.page-news .entry--lime { --entry-accent: var(--lime); }

.page-news .entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.75rem;
}

.page-news .series-tag {
  display: inline-block;
  padding: 0.2rem 0.62rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.page-news .series-tag--wine {
  background: rgba(110, 31, 44, 0.5);
  color: #F2AEBE;
  border: 1px solid rgba(217, 100, 127, 0.4);
}

.page-news .series-tag--gold {
  background: rgba(240, 178, 74, 0.16);
  color: var(--gold);
  border: 1px solid rgba(240, 178, 74, 0.4);
}

.page-news .series-tag--indigo {
  background: rgba(42, 42, 94, 0.58);
  color: #B7B7F1;
  border: 1px solid rgba(122, 122, 214, 0.42);
}

.page-news .series-tag--lime {
  background: rgba(200, 255, 77, 0.14);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 77, 0.4);
}

.page-news .entry__time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-num);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: var(--sage);
  white-space: nowrap;
}

.page-news .entry__dot {
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pulse);
}

.page-news .entry__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-news .entry__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(232, 241, 236, 0.78);
}

.page-news .entry__more {
  margin: 0;
  padding-inline-start: 0.7rem;
  border-inline-start: 2px solid rgba(126, 150, 140, 0.3);
  font-size: 0.8125rem;
  line-height: 1.62;
  color: var(--sage);
}

.page-news .entry__link {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 0.15rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 255, 77, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-news .entry__link:hover {
  border-bottom-color: var(--lime);
}

/* ---------- 专题系列 ---------- */
.page-news .series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.page-news .series-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--news-radius);
  border: 1px solid rgba(126, 150, 140, 0.16);
  background: var(--turf);
  --sc-accent: var(--sage);
}

.page-news .series-card--wine {
  background: linear-gradient(168deg, rgba(110, 31, 44, 0.62), rgba(12, 16, 14, 0.92));
  --sc-accent: #D9647F;
}

.page-news .series-card--gold {
  background: linear-gradient(168deg, rgba(240, 178, 74, 0.15), rgba(12, 16, 14, 0.92));
  --sc-accent: var(--gold);
}

.page-news .series-card--indigo {
  background: linear-gradient(168deg, rgba(42, 42, 94, 0.72), rgba(12, 16, 14, 0.92));
  --sc-accent: #7A7AD6;
}

.page-news .series-card--lime {
  background: linear-gradient(168deg, rgba(200, 255, 77, 0.12), rgba(12, 16, 14, 0.92));
  --sc-accent: var(--lime);
}

.page-news .series-card__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.page-news .series-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.8) contrast(1.06);
}

.page-news .series-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem 1.3rem 1.4rem;
}

.page-news .series-card__body h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-news .series-card__body h3::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--sc-accent);
}

.page-news .series-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(232, 241, 236, 0.78);
}

.page-news .series-card__body .series-card__freq {
  margin-top: 0.35rem;
  padding-top: 0.72rem;
  border-top: 1px dashed rgba(126, 150, 140, 0.32);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--sage);
}

/* ---------- 订阅区 ---------- */
.page-news .subscribe__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: clamp(1.5rem, 5vw, 2.85rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(15, 51, 43, 0.74), rgba(5, 32, 26, 0.55));
  border: 1px solid rgba(200, 255, 77, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    inset 0 1px 0 rgba(232, 241, 236, 0.07),
    0 36px 74px -54px rgba(200, 255, 77, 0.4);
}

.page-news .subscribe__intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-news .subscribe__intro h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--mist);
}

.page-news .subscribe__intro p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.76;
  color: rgba(232, 241, 236, 0.82);
}

.page-news .subscribe__intro .btn {
  align-self: flex-start;
  margin-top: 0.45rem;
}

.page-news .subscribe__stats {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
}

.page-news .subscribe__stats > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  padding-block: 0.78rem;
  border-bottom: 1px dashed rgba(126, 150, 140, 0.28);
}

.page-news .subscribe__stats > div:first-child {
  padding-top: 0;
}

.page-news .subscribe__stats > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .subscribe__stats dt {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--sage);
}

.page-news .subscribe__stats dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mist);
  text-align: end;
}

.page-news .subscribe__stats .num {
  font-family: var(--font-num);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lime);
}

/* ---------- 跳回数据 ---------- */
.page-news .trace-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .trace-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.3rem 1.15rem;
  padding-block: 1.55rem;
  border-top: 1px solid rgba(126, 150, 140, 0.22);
}

.page-news .trace-item:last-child {
  border-bottom: 1px solid rgba(126, 150, 140, 0.22);
}

.page-news .trace-item__step {
  grid-row: span 3;
  font-family: var(--font-num);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--pulse);
  opacity: 0.9;
}

.page-news .trace-item h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-news .trace-item p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(232, 241, 236, 0.78);
}

.page-news .trace-item a {
  justify-self: start;
  padding-bottom: 0.12rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 178, 74, 0.38);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .trace-item a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* ---------- 响应式 ---------- */
@media (min-width: 48rem) {
  .page-news .entries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.75rem;
    padding-bottom: 3rem;
  }

  .page-news .entries-grid > .entry:nth-child(even) {
    margin-block-start: 3rem;
  }

  .page-news .series-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.6rem;
  }

  .page-news .trace-item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.35rem 1.4rem;
    padding-block: 1.85rem;
  }

  .page-news .trace-item__step {
    font-size: 2.1rem;
  }
}

@media (min-width: 56rem) {
  .page-news .subscribe__panel {
    grid-template-columns: 1.35fr 1fr;
    gap: 2.6rem;
  }
}

@media (max-width: 30rem) {
  .page-news .season-step {
    flex-basis: 6.75rem;
  }

  .page-news .entry {
    padding-inline: 1.1rem;
  }

  .page-news .entry::before {
    left: 1.1rem;
    right: 1.1rem;
  }
}
<<<END>>>
