.page-news {
  --news-line: rgba(147, 166, 198, 0.28);
  --news-hover: rgba(244, 247, 255, 0.05);
}

.page-news .display {
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- 首屏 ---------- */
.page-news__hero {
  position: relative;
  overflow: hidden;
}

.page-news__hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 70% at 78% 12%, rgba(74, 134, 232, 0.22), transparent 70%),
    radial-gradient(45% 60% at 12% 4%, rgba(245, 197, 66, 0.12), transparent 72%);
  pointer-events: none;
}

.page-news__hero .container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero {
  align-items: end;
  row-gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(20px, 4vw, 42px);
}

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

.page-news .v-label {
  writing-mode: horizontal-tb;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--grey);
  margin: 0;
}

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

.page-news .news-hero__main .lead {
  max-width: 56ch;
}

.page-news .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.page-news .news-filters .tag {
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.page-news .news-filters .tag:hover,
.page-news .news-filters .tag:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3, 9, 22, 0.5);
}

.page-news .news-hero__figure {
  margin: clamp(26px, 4vw, 48px) 0 0;
}

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

/* ---------- 条目列表 ---------- */
.page-news .entries__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin-bottom: 20px;
}

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

.page-news .entry {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px 0 20px 16px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.24s ease;
}

.page-news .entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: var(--pill);
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.28s ease;
}

.page-news .entry:hover::before,
.page-news .entry:focus-within::before {
  transform: scaleY(1);
}

.page-news .entry:hover {
  background: var(--news-hover);
}

.page-news .entry__time {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-news .entry__no {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--grey);
}

.page-news .entry__when {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.page-news .entry__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}

.page-news .entry__title {
  margin: 0 0 8px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.4;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  transition: color 0.24s ease;
}

.page-news .entry:hover .entry__title {
  color: var(--yellow);
}

.page-news .entry__sum {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
  max-width: 66ch;
}

.page-news .entry__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-news .entry__stat .num {
  font-size: 26px;
  color: var(--yellow);
  line-height: 1;
}

.page-news .entry__stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--grey);
}

.page-news .badge-12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--pill);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-news .entries__more {
  margin: 26px 0 0;
}

/* ---------- 专题系列带 ---------- */
.page-news .series__lead {
  max-width: 60ch;
}

.page-news .series-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}

.page-news .series-cloud .tag {
  text-decoration: none;
}

.page-news .series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 36px);
}

.page-news .series-card {
  padding: 22px 20px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(244, 247, 255, 0.045);
  transition: transform 0.26s ease, border-color 0.26s ease, background-color 0.26s ease;
}

.page-news .series-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: rgba(244, 247, 255, 0.075);
}

.page-news .series-card__count {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.page-news .series-card__count .num {
  font-size: 20px;
  color: var(--blue);
}

.page-news .series-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}

.page-news .series-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}

/* ---------- 赛季节奏 ---------- */
.page-news .rhythm__text {
  min-width: 0;
}

.page-news .rhythm-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.page-news .rhythm-item {
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}

.page-news .rhythm-item:nth-child(1) {
  border-left-color: var(--yellow);
}

.page-news .rhythm-item:nth-child(2) {
  border-left-color: var(--green);
}

.page-news .rhythm-item:nth-child(3) {
  border-left-color: var(--blue);
}

.page-news .rhythm-item__phase {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.page-news .rhythm-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

.page-news .rhythm__figure {
  margin: 28px 0 0;
}

/* ---------- 编号 12 ---------- */
.page-news .code12 {
  align-items: start;
  row-gap: clamp(22px, 3vw, 34px);
}

.page-news .code12__body {
  min-width: 0;
}

.page-news .code12__body .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .code12__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-news .code12__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.78;
  color: var(--grey);
}

.page-news .code12__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}

.page-news .code12__cta {
  margin: 26px 0 0;
}

/* ---------- 编辑手记 ---------- */
.page-news .section--mist .section-title,
.page-news .section--mist .kicker,
.page-news .section--mist .figure-frame__caption {
  color: var(--ink);
}

.page-news .notes-log p {
  margin: 0 0 1.15em;
  max-width: 62ch;
}

.page-news .notes-log p:last-child {
  margin-bottom: 0;
}

.page-news .notes-log__figure {
  margin: 28px 0 0;
}

/* ---------- 追踪更新 ---------- */
.page-news .follow__intro {
  min-width: 0;
}

.page-news .follow__intro .btn {
  margin-top: 6px;
}

.page-news .follow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .follow-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(244, 247, 255, 0.035);
  overflow: hidden;
}

.page-news .follow-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
  list-style: none;
}

.page-news .follow-item__q::-webkit-details-marker {
  display: none;
}

.page-news .follow-item__q::marker {
  content: "";
}

.page-news .follow-item__q:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -4px;
  border-radius: var(--r-md);
}

.page-news .follow-item__arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--yellow);
  transition: transform 0.26s ease;
}

.page-news .follow-item[open] .follow-item__arrow {
  transform: rotate(90deg);
}

.page-news .follow-item__body {
  padding: 0 20px 20px;
  animation: news-drop 0.28s ease both;
}

.page-news .follow-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  max-width: 64ch;
}

@keyframes news-drop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-news .follow__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-news .entry {
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-areas:
      "time stat"
      "body body";
    column-gap: 20px;
    padding: 22px 0 22px 20px;
  }

  .page-news .entry__time {
    grid-area: time;
  }

  .page-news .entry__body {
    grid-area: body;
  }

  .page-news .entry__stat {
    grid-area: stat;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
  }

  .page-news .entry__stat .num {
    font-size: 30px;
  }

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

@media (min-width: 1024px) {
  .page-news .v-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding-top: 6px;
  }

  .page-news .entries__side {
    margin-bottom: 0;
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .page-news .entry {
    grid-template-columns: 108px minmax(0, 1fr) 150px;
    grid-template-areas: "time .page-news stat";
    align-items: start;
    padding: 24px 8px 24px 24px;
  }

  .page-news .entry::before {
    top: 16px;
    bottom: 16px;
  }

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

  .page-news .series-card:nth-child(odd) {
    transform: translateY(16px);
  }

  .page-news .series-card:nth-child(odd):hover {
    transform: translateY(10px);
  }

  .page-news .rhythm__figure {
    margin-top: 0;
  }
}
</｜｜DSML｜｜ parameter>
</｜｜DSML｜｜ invoke>
</｜｜DSML｜｜ calls>
