.page-news {
  padding: 28px 20px 88px;
  color: var(--text);
  font-family: var(--font-body);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .page-news {
    padding: 48px 48px 120px;
  }
}

/* ---------- 面包屑 ---------- */
.page-news .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px;
  font-size: var(--fs-12);
  letter-spacing: 0.16em;
  color: var(--muted);
}

.page-news .crumbs a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}

.page-news .crumbs a:hover {
  color: var(--turf-soft);
  border-color: var(--turf);
}

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

/* ---------- 首屏 ---------- */
.page-news .nw-hero {
  display: grid;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.page-news .nw-hero__text {
  min-width: 0;
}

.page-news .nw-kicker {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turf);
}

.page-news .nw-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(52px, 13vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-hero__note {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 1px solid var(--turf);
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

.page-news .nw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-news .nw-hero__media {
  margin: 0;
}

@media (min-width: 960px) {
  .page-news .nw-hero {
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
    align-items: end;
    gap: 48px;
  }
}

/* ---------- 区块骨架 ---------- */
.page-news .nw-section {
  margin-top: 76px;
}

.page-news .nw-section__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.page-news .nw-section__num {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.2em;
  color: var(--turf);
}

.page-news .nw-section__head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 5.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-section__side {
  margin-left: auto;
  font-size: var(--fs-12);
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ---------- 标签 ---------- */
.page-news .nw-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-12);
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
}

.page-news .nw-tag::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--turf);
}

.page-news .nw-tag--alert::before {
  background: var(--offside);
}

/* ---------- 本轮焦点 ---------- */
.page-news .nw-focus {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .nw-band {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 20px 22px 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(18, 48, 79, 0.85), rgba(12, 33, 56, 0.28) 62%, transparent);
  transition: padding-left 260ms var(--ease);
}

.page-news .nw-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--turf);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 260ms var(--ease);
}

.page-news .nw-band:hover,
.page-news .nw-band:focus-within {
  padding-left: 34px;
}

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

.page-news .nw-band__tick {
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.1em;
  color: var(--turf);
}

.page-news .nw-band h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-band p {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

@media (min-width: 780px) {
  .page-news .nw-band {
    grid-template-columns: 96px minmax(0, 1fr) 148px;
    align-items: start;
    gap: 24px;
  }

  .page-news .nw-band .nw-tag {
    justify-self: end;
    margin-top: 6px;
  }
}

/* ---------- 分栏 ---------- */
.page-news .nw-split {
  display: grid;
  gap: 28px;
}

.page-news .nw-split__media {
  margin: 0;
}

@media (min-width: 900px) {
  .page-news .nw-split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px;
    align-items: start;
  }
}

/* ---------- 动态列表 ---------- */
.page-news .nw-stream {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .nw-stream__row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.page-news .nw-stream__row:first-child {
  border-top: 1px solid var(--line);
}

.page-news .nw-stream__tick {
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  letter-spacing: 0.04em;
  color: var(--turf);
  padding-top: 4px;
}

.page-news .nw-stream__row h3 {
  margin: 0 0 6px;
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-news .nw-stream__row p {
  margin: 0 0 10px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.page-news .nw-note {
  padding: 16px 18px;
  margin: 0;
  border-left: 2px solid var(--offside);
  background: rgba(255, 122, 47, 0.06);
}

.page-news .nw-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 友谊赛 ---------- */
.page-news .nw-friend {
  display: grid;
  gap: 28px;
}

.page-news .nw-friend__media {
  margin: 0;
}

.page-news .nw-lead {
  margin: 0 0 24px;
  max-width: 600px;
  font-size: var(--fs-18);
  line-height: 1.85;
  color: var(--text);
}

.page-news .nw-cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .nw-cards li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.page-news .nw-cards li:last-child {
  border-bottom: 1px solid var(--line);
}

.page-news .nw-cards h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-24);
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-cards p {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

@media (min-width: 900px) {
  .page-news .nw-friend {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 40px;
    align-items: start;
  }
}

/* ---------- 轮次补录与版本 ---------- */
.page-news .nw-patch {
  display: grid;
  gap: 32px;
}

.page-news .nw-density {
  height: 76px;
  border: 1px solid var(--line);
  background-color: rgba(12, 33, 56, 0.65);
  background-image: repeating-linear-gradient(90deg, var(--turf) 0 3px, transparent 3px 14px);
  background-repeat: no-repeat;
  background-size: 100% 54%;
  background-position: left bottom;
}

.page-news .nw-density__scale {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
  color: var(--muted);
}

.page-news .nw-patch__text {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.page-news .nw-versions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .nw-versions li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-news .nw-versions li:first-child {
  border-top: 1px solid var(--line);
}

.page-news .nw-versions .mono {
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  color: var(--turf);
}

.page-news .nw-versions em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
  color: var(--offside);
}

@media (min-width: 900px) {
  .page-news .nw-patch {
    grid-template-columns: minmax(0, 12fr) minmax(0, 12fr);
    gap: 40px;
  }
}

@media (max-width: 599px) {
  .page-news .nw-versions li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .page-news .nw-versions em {
    grid-column: 2;
  }
}

/* ---------- 专题系列 ---------- */
.page-news .nw-feature-strip {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-news .nw-feature-strip img {
  display: block;
  width: 100%;
  height: 140px;
  max-width: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (min-width: 780px) {
  .page-news .nw-feature-strip img {
    height: 200px;
  }
}

.page-news .nw-topics {
  display: block;
}

.page-news .nw-topic {
  border-top: 1px solid var(--line);
}

.page-news .nw-topic:last-child {
  border-bottom: 1px solid var(--line);
}

.page-news .nw-topic summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: baseline;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding-left 240ms var(--ease), background 240ms var(--ease);
}

.page-news .nw-topic summary::-webkit-details-marker {
  display: none;
}

.page-news .nw-topic summary:hover {
  padding-left: 14px;
  background: rgba(18, 48, 79, 0.5);
}

.page-news .nw-topic[open] summary {
  background: rgba(18, 48, 79, 0.35);
}

.page-news .nw-topic__idx {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.16em;
  color: var(--turf);
}

.page-news .nw-topic__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-topic__freq {
  font-size: var(--fs-12);
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
}

.page-news .nw-topic__body {
  padding: 4px 4px 26px 60px;
}

.page-news .nw-topic__body p {
  margin: 0 0 14px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.page-news .nw-topic__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .nw-topic__body li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}

.page-news .nw-topic__body li span:first-child {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--turf-soft);
  letter-spacing: 0.08em;
}

@media (max-width: 599px) {
  .page-news .nw-topic__body {
    padding-left: 4px;
  }
}

/* ---------- 关注入口 ---------- */
.page-news .nw-subscribe {
  margin-top: 76px;
  padding: 34px 22px;
  display: grid;
  gap: 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--turf);
  background: linear-gradient(135deg, rgba(18, 48, 79, 0.92), rgba(10, 26, 47, 0.55));
}

.page-news .nw-subscribe h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 4.6vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--white);
}

.page-news .nw-subscribe p {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.page-news .nw-subscribe__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

@media (min-width: 900px) {
  .page-news .nw-subscribe {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: 40px;
    padding: 44px 40px;
  }
}
