.page-news {
  --news-hair: 1px solid var(--line-soft);
  --news-gap: clamp(36px, 6vw, 80px);
  position: relative;
  display: block;
  color: var(--text-body);
  font-family: var(--font-sans);
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(255, 62, 143, .17), transparent 64%),
    radial-gradient(880px 560px at 6% 10%, rgba(59, 240, 228, .12), transparent 62%);
  overflow-x: clip;
}

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

/* ---------- 面包屑 ---------- */
.page-news .breadcrumb {
  padding-top: clamp(16px, 3vw, 28px);
}

.page-news .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gauze);
}

.page-news .breadcrumb__list a {
  color: var(--gauze);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-news .breadcrumb__list a:hover {
  color: var(--cyan);
  border-bottom-color: var(--line-cyan);
}

.page-news .breadcrumb__sep {
  color: var(--line-cyan);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  padding-block: clamp(26px, 5vw, 54px) clamp(34px, 6vw, 70px);
  border-bottom: var(--news-hair);
}

.page-news .news-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cyan);
}

.page-news .news-hero__eyebrow::before {
  content: "";
  width: clamp(24px, 5vw, 46px);
  height: 1px;
  background: var(--line-cyan);
}

.page-news .news-hero__title {
  margin: 0 0 22px;
  line-height: 1.02;
}

.page-news .news-hero__lede {
  max-width: 42ch;
  margin: 0 0 clamp(26px, 4vw, 38px);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--text-body);
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin: 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px dashed var(--line-soft);
}

.page-news .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.page-news .stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gauze);
}

.page-news .stat__value {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--glass-white);
}

.page-news .stat__value--cyan { color: var(--cyan); }
.page-news .stat__value--gold { color: var(--gold); }
.page-news .stat__value--magenta { color: var(--magenta); }

/* ---------- 轮次刻度（桌面侧栏） ---------- */
.page-news .news-rounds {
  display: none;
}

/* ---------- 区块头部 ---------- */
.page-news .section {
  padding-block: clamp(38px, 6vw, 78px);
}

.page-news .news-sec-head {
  max-width: 62ch;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.page-news .eyebrow {
  display: block;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gauze);
}

.page-news .h-section {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--glass-white);
}

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

/* ---------- 栏目索引 ---------- */
.page-news .news-col-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-soft);
  border: var(--news-hair);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-col {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "no name"
    "no desc"
    "no freq";
  gap: 8px 16px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--ink-2);
  transition: background 220ms var(--ease);
}

.page-news .news-col::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--magenta), transparent 85%);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.page-news .news-col:hover {
  background: rgba(243, 241, 255, .05);
}

.page-news .news-col:hover::before {
  opacity: 1;
}

.page-news .news-col__no {
  grid-area: no;
  padding-top: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold);
}

.page-news .news-col__name {
  grid-area: name;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--glass-white);
}

.page-news .news-col__desc {
  grid-area: desc;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.page-news .news-col__freq {
  grid-area: freq;
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--cyan);
}

/* ---------- 精选 ---------- */
.page-news .news-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(18px, 3vw, 32px);
  border: var(--news-hair);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(15, 92, 74, .3), rgba(27, 11, 51, .08) 58%),
    var(--glass-fill);
}

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

.page-news .news-lead__figure .figure__frame {
  border: var(--news-hair);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.page-news .news-lead__title {
  margin: 14px 0 14px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--glass-white);
}

.page-news .news-lead__body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
}

.page-news .news-lead__meta,
.page-news .news-pick__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gauze);
}

.page-news .tag {
  display: inline-block;
  padding: 4px 11px;
  border: 1px solid var(--line-magenta);
  border-radius: 999px;
  background: rgba(255, 62, 143, .08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--magenta);
}

.page-news .news-pick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(16px, 2.6vw, 26px);
}

.page-news .news-pick {
  padding: clamp(20px, 2.6vw, 28px);
  border: var(--news-hair);
  border-radius: var(--radius);
  background: var(--glass-fill);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.page-news .news-pick:hover {
  transform: translateY(-3px);
  border-color: var(--line-cyan);
  background: var(--glass-fill-hi);
}

.page-news .news-pick--rule .tag {
  border-color: var(--line-cyan);
  background: rgba(59, 240, 228, .08);
  color: var(--cyan);
}

.page-news .news-pick--log .tag {
  border-color: rgba(200, 163, 74, .38);
  background: rgba(200, 163, 74, .08);
  color: var(--gold);
}

.page-news .news-pick__title {
  margin: 14px 0 12px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--glass-white);
}

.page-news .news-pick p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- 规则更新 ---------- */
.page-news .news-rules__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

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

.page-news .news-rules__figure .figure__frame {
  border: var(--news-hair);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-news .news-rules__figure .figure__caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--gauze);
}

.page-news .news-rules__list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  border-left: 1px solid var(--line-soft);
}

.page-news .news-rule {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.page-news .news-rule:first-child {
  padding-top: 4px;
}

.page-news .news-rule:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.page-news .news-rule::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 163, 74, .12);
}

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

.page-news .news-rule__cat {
  font-size: 15px;
  font-weight: 700;
  color: var(--glass-white);
}

.page-news .news-rule__round {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--cyan);
}

.page-news .news-rule__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ---------- 牌局解剖 ---------- */
.page-news .news-anatomy__figure {
  margin: 0 0 clamp(24px, 4vw, 40px);
}

.page-news .news-anatomy__figure .figure__frame {
  border: var(--news-hair);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-anatomy__figure .figure__caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--gauze);
}

.page-news .news-anatomy__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-anatomy__item {
  padding: clamp(18px, 2.4vw, 24px);
  border: var(--news-hair);
  border-left: 2px solid var(--line-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(120deg, rgba(59, 240, 228, .06), transparent 72%);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.page-news .news-anatomy__item:hover {
  border-left-color: var(--cyan);
  background: linear-gradient(120deg, rgba(59, 240, 228, .13), transparent 72%);
}

.page-news .news-anatomy__type {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--cyan);
}

.page-news .news-anatomy__title {
  margin: 10px 0 10px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--glass-white);
}

.page-news .news-anatomy__focus {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: .04em;
  color: var(--gauze);
}

/* ---------- 版本时间线 ---------- */
.page-news .news-version__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
}

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

.page-news .news-version__figure .figure__frame {
  border: var(--news-hair);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-deep);
}

.page-news .news-version__figure .figure__caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--gauze);
}

.page-news .news-ver-list {
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  border-left: 1px solid var(--line-soft);
}

.page-news .news-ver {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.page-news .news-ver:first-child {
  padding-top: 4px;
}

.page-news .news-ver:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.page-news .news-ver::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
}

.page-news .news-ver:last-child::before {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(59, 240, 228, .14);
}

.page-news .news-ver__tag {
  padding-top: 2px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold);
}

.page-news .news-ver__title {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--glass-white);
}

.page-news .news-ver__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ---------- 订阅与投稿 ---------- */
.page-news .news-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 26px);
}

.page-news .news-cta__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 40px);
  border: var(--news-hair);
  border-radius: var(--radius);
  background: var(--glass-fill);
}

.page-news .news-cta__card--accent {
  background:
    linear-gradient(140deg, rgba(15, 92, 74, .34), rgba(27, 11, 51, .12) 62%),
    var(--glass-fill);
  border-color: rgba(59, 240, 228, .22);
}

.page-news .news-cta__title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--glass-white);
}

.page-news .news-cta__text {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
}

.page-news .news-cta__links {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gauze);
}

.page-news .news-cta__links a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
  transition: color 180ms var(--ease);
}

.page-news .news-cta__links a:hover {
  color: var(--glass-white);
}

/* ---------- 桌面栅格 ---------- */
@media (min-width: 700px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

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

  .page-news .news-anatomy__item:nth-child(even) {
    margin-top: 26px;
  }

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

@media (min-width: 960px) {
  .page-news .news-lead {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
  }

  .page-news .news-rules__wrap {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: start;
  }

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

@media (min-width: 1380px) {
  .page-news .news-rounds {
    display: block;
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--gauze);
  }

  .page-news .news-rounds__cap {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--gauze);
  }

  .page-news .news-rounds__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
  }

  .page-news .news-rounds__list li {
    position: relative;
    padding-left: 15px;
    line-height: 1;
  }

  .page-news .news-rounds__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
    opacity: .65;
  }

  .page-news .news-rounds__list li:nth-child(-n+11) {
    color: rgba(200, 163, 74, .68);
  }

  .page-news .news-rounds__list li:nth-child(12) {
    color: var(--cyan);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-col,
  .page-news .news-pick,
  .page-news .news-anatomy__item,
  .page-news .breadcrumb__list a,
  .page-news .news-cta__links a {
    transition: none;
  }

  .page-news .news-pick:hover {
    transform: none;
  }
}
