.page-news {
  --n-pair: var(--purple);
  --n-endgame: var(--green);
  --n-round: var(--gold);
  --n-room: var(--orange);
  --n-arcade: var(--purple-deep);
  --n-lib: var(--muted);

  display: block;
  padding-top: calc(var(--header-h) + 22px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
}

.page-news .breadcrumbs {
  margin: 0 0 clamp(16px, 3vw, 28px);
}

.page-news .eyebrow {
  margin: 0;
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}

/* ---------- 首屏 ---------- */
.news-intro {
  display: grid;
  gap: 14px;
  padding-bottom: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.news-intro h1 {
  margin: 0;
  font-size: clamp(46px, 12.5vw, 92px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  color: var(--purple-deep);
}

.news-intro__lede {
  margin: 0;
  max-width: 34em;
  font-size: clamp(15.5px, 1.9vw, 17.5px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.news-intro__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 56px);
  margin: 6px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.news-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.news-fact dt {
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.news-fact dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.news-fact .stat-num {
  font-family: var(--font-meta);
  font-variant-numeric: tabular-nums;
  font-size: clamp(38px, 8vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--purple);
}

.news-fact__unit {
  font-family: var(--font-meta);
  font-size: 13px;
  color: var(--muted);
}

.news-intro__note {
  margin: 0;
  font-family: var(--font-meta);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ---------- 本期看点 ---------- */
.news-highlights {
  position: relative;
  isolation: isolate;
  margin-top: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--green);
  color: var(--paper);
  box-shadow: var(--shadow-2);
}

.news-highlights__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.news-highlights::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(18, 59, 51, 0.96) 0%, rgba(18, 59, 51, 0.86) 44%, rgba(59, 31, 82, 0.92) 100%);
}

.news-highlights__body {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 46px);
  display: grid;
  gap: 22px;
}

.news-highlights__head h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 4.4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--paper-2);
}

.news-highlights__head p {
  margin: 0;
  font-family: var(--font-meta);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(246, 241, 228, 0.7);
}

.news-highlights__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.news-highlights__item {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(53, 224, 208, 0.18);
  background: rgba(27, 20, 16, 0.28);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.news-highlights__item:hover {
  border-color: rgba(53, 224, 208, 0.52);
  background: rgba(27, 20, 16, 0.44);
  transform: translateY(-2px);
}

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

.news-highlights__tag {
  justify-self: start;
}

.news-highlights__title {
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--paper-2);
}

.news-highlights__sum {
  font-size: 13px;
  line-height: 1.62;
  color: rgba(246, 241, 228, 0.72);
}

.page-news .tag--latest {
  display: inline-block;
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: var(--pill);
  background: var(--orange);
  color: var(--paper-2);
  border: 1px solid var(--orange);
}

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

/* ---------- 分类筛选 ---------- */
.news-filter {
  margin-top: clamp(34px, 6vw, 62px);
  display: grid;
  gap: 20px;
}

.news-filter__head h2 {
  margin: 6px 0 8px;
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.news-filter__note {
  margin: 0;
  max-width: 34em;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.news-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.page-news .news-filter__bar .tag {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1;
  padding: 9px 15px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink-soft);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.page-news .news-filter__bar .tag:hover {
  border-color: var(--purple);
  color: var(--purple-deep);
  transform: translateY(-1px);
}

.page-news .news-filter__bar .tag[aria-pressed="true"] {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--paper-2);
}

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

.news-filter__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  background: var(--paper-2);
}

.news-filter__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (min-width: 860px) {
  .news-filter {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    grid-template-areas:
      "head fig"
      "bar  fig";
    column-gap: clamp(24px, 4vw, 52px);
    align-items: start;
  }
  .news-filter__head { grid-area: head; }
  .news-filter__bar { grid-area: bar; }
  .news-filter__figure { grid-area: fig; align-self: start; }
}

/* ---------- 专题列表 ---------- */
.news-list {
  margin-top: clamp(30px, 5vw, 52px);
}

.news-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--ink);
}

.news-list__head h2 {
  margin: 0;
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.news-list__count {
  font-family: var(--font-meta);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.news-items {
  display: grid;
  gap: 9px;
}

.news-item {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 15px 18px 15px 21px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-strong);
}

.news-item__bar {
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--n-lib);
  transition: width 0.18s var(--ease);
}

.news-item:hover .news-item__bar {
  width: 6px;
}

.news-item[data-category~="牌型组合"] .news-item__bar { background: var(--n-pair); }
.news-item[data-category~="残局练习"] .news-item__bar { background: var(--n-endgame); }
.news-item[data-category~="赛制轮数"] .news-item__bar { background: var(--n-round); }
.news-item[data-category~="好友局"] .news-item__bar { background: var(--n-room); }
.news-item[data-category~="电玩街机"] .news-item__bar { background: var(--n-arcade); }
.news-item[data-category~="玩法库"] .news-item__bar { background: var(--n-lib); }

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.page-news .news-item .tag {
  font-family: var(--font-meta);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: var(--pill);
  background: rgba(109, 63, 168, 0.1);
  color: var(--purple-deep);
  border: 1px solid rgba(109, 63, 168, 0.22);
}

.news-item__when {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.news-item__when::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(224, 169, 75, 0.24);
}

.news-item__title {
  margin: 0;
  font-size: clamp(16.5px, 2.3vw, 19px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.38;
  color: var(--ink);
}

.news-item__sum {
  margin: 0;
  max-width: 38em;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.news-list__figure {
  margin: 8px 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.news-list__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-list__figure figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ---------- 季度小结 ---------- */
.news-quarter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(40px, 7vw, 76px);
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius-card);
  background: var(--purple-deep);
  color: var(--paper);
}

.news-quarter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 88% 0%, rgba(53, 224, 208, 0.18) 0%, rgba(53, 224, 208, 0) 58%);
}

.news-quarter__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.page-news .news-quarter .eyebrow {
  color: var(--gold);
}

.news-quarter__head h2 {
  margin: 6px 0 10px;
  font-size: clamp(22px, 3.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--paper-2);
}

.news-quarter__head p {
  margin: 0;
  max-width: 34em;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(246, 241, 228, 0.78);
}

.news-quarter__figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(53, 224, 208, 0.2);
}

.news-quarter__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

@media (min-width: 880px) {
  .news-quarter__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    column-gap: clamp(24px, 4vw, 48px);
  }
}

.news-bars {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 4vw, 38px);
  padding-top: clamp(20px, 3.4vw, 30px);
  border-top: 1px solid rgba(246, 241, 228, 0.16);
  display: grid;
  gap: 11px;
}

.news-bar {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.news-bar__label {
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(246, 241, 228, 0.72);
  transition: color 0.18s var(--ease);
}

.news-bar__track {
  position: relative;
  display: block;
  height: 8px;
  border-radius: var(--pill);
  background: rgba(246, 241, 228, 0.14);
  overflow: hidden;
}

.news-bar__fill {
  display: block;
  height: 100%;
  width: calc(var(--v, 0) * 1%);
  min-width: 6px;
  border-radius: var(--pill);
  background: linear-gradient(90deg, var(--neon), var(--gold));
  transition: filter 0.18s var(--ease);
}

.news-bar__val {
  font-family: var(--font-meta);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  color: var(--neon);
}

.news-bar:hover .news-bar__fill {
  filter: brightness(1.18) saturate(1.15);
}

.news-bar:hover .news-bar__label {
  color: var(--paper-2);
}

/* ---------- 跟进与回看 ---------- */
.news-follow {
  margin-top: clamp(40px, 7vw, 72px);
}

.news-follow__head {
  margin-bottom: 18px;
}

.news-follow__head h2 {
  margin: 6px 0 8px;
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.news-follow__head p {
  margin: 0;
  max-width: 34em;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.news-follow__cols {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .news-follow__cols {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

.page-news .news-follow__card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px 22px;
}

.page-news .news-follow__card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-news .news-follow__card p {
  margin: 0;
  max-width: 34em;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.news-follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.news-follow__list li {
  display: grid;
  gap: 3px;
  padding-left: 13px;
  border-left: 2px solid var(--gold);
}

.news-follow__list strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.news-follow__list span {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-news .news-follow__card a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(109, 63, 168, 0.34);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.page-news .news-follow__card a:hover {
  color: var(--purple-deep);
  border-bottom-color: var(--purple-deep);
}

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

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item,
  .page-news .news-item__bar,
  .page-news .news-highlights__item,
  .page-news .news-bar__fill,
  .page-news .news-filter__bar .tag {
    transition: none;
  }
  .page-news .news-item:hover,
  .page-news .news-highlights__item:hover,
  .page-news .news-filter__bar .tag:hover {
    transform: none;
  }
}
<<<END>>>

.page-news {
  --v: 1rem;
}
