.page-news {
  --pn-ink-soft: rgba(36, 28, 20, .78);
  --pn-rule: rgba(53, 224, 139, .18);
  --pn-rule-soft: rgba(169, 188, 203, .16);
}

/* ---------- 首屏 ---------- */
.page-news .breadcrumb {
  margin: 22px 0 0;
}

.page-news .news-hero {
  padding: clamp(26px, 4.6vw, 54px) 0 clamp(24px, 4vw, 46px);
  border-bottom: 1px solid var(--pn-rule);
  display: grid;
  gap: 16px;
  max-width: 940px;
}

.page-news .news-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(29px, 5.2vw, 56px);
  line-height: 1.09;
  letter-spacing: -.01em;
  color: var(--cream);
  overflow-wrap: break-word;
}

.page-news .news-hero__lede {
  margin: 0;
  max-width: 66ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.78;
  color: var(--slate-light);
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-light);
}

.page-news .news-hero__meta span {
  position: relative;
  padding-left: 14px;
}

.page-news .news-hero__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 2px;
  background: var(--tactic);
}

/* ---------- 通用区块 ---------- */
.page-news .news-block {
  padding: clamp(32px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--pn-rule);
}

.page-news .news-block__head {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.page-news .news-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--cream);
}

.page-news .news-block__sub {
  margin: 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--slate-light);
}

/* ---------- 专栏卡片 ---------- */
.page-news .col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

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

.page-news .col-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 16px 16px;
  background: var(--field);
  border: 1px solid var(--pn-rule);
  border-left: 3px solid var(--mid);
  transition: transform .2s ease, border-left-color .2s ease, background .2s ease;
}

.page-news .col-card:hover,
.page-news .col-card:focus-within {
  transform: translateY(-2px);
  border-left-color: var(--glow);
  background: #123f31;
}

.page-news .col-card--injury { border-left-color: rgba(229, 72, 77, .8); }
.page-news .col-card--number { border-left-color: var(--amber-deep); }
.page-news .col-card--transfer { border-left-color: var(--mid); }
.page-news .col-card--stand { border-left-color: var(--slate); }

.page-news .col-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.32;
  color: var(--cream);
}

.page-news .col-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--slate-light);
}

.page-news .col-card__count {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-light);
}

.page-news .col-card__count span {
  font-size: 22px;
  color: var(--amber);
  margin-right: 4px;
}

/* ---------- 标签 ---------- */
.page-news .chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.5;
  padding: 2px 8px;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.page-news .chip--injury {
  color: #ff9497;
  background: rgba(229, 72, 77, .12);
  border-color: rgba(229, 72, 77, .5);
}

.page-news .chip--number {
  color: var(--amber);
  background: rgba(255, 176, 32, .12);
  border-color: rgba(255, 176, 32, .45);
}

.page-news .chip--transfer {
  color: var(--tactic);
  background: rgba(53, 224, 139, .1);
  border-color: rgba(53, 224, 139, .42);
}

.page-news .chip--stand {
  color: var(--slate-light);
  background: rgba(169, 188, 203, .1);
  border-color: rgba(169, 188, 203, .35);
}

/* ---------- 看台图文条 ---------- */
.page-news .news-stand {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--pn-rule-soft);
  align-items: center;
}

@media (min-width: 820px) {
  .page-news .news-stand {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 34px;
  }
}

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

.page-news .news-stand__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--pn-rule);
}

.page-news .news-stand__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.3;
  color: var(--cream);
}

.page-news .news-stand__body p {
  margin: 0 0 10px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--slate-light);
}

/* ---------- 本轮更新 ---------- */
.page-news .news-updates__head {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pn-rule-soft);
}

.page-news .news-updates__intro {
  display: grid;
  gap: 10px;
}

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

.page-news .news-updates__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--pn-rule);
}

@media (min-width: 900px) {
  .page-news .news-updates__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    gap: 42px;
    align-items: end;
  }
}

/* ---------- 筛选 + 列表 ---------- */
.page-news .news-index {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .filter-radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .filter-tab {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-light);
  background: var(--field);
  border: 1px solid var(--pn-rule-soft);
  padding: 7px 13px;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.page-news .filter-tab span {
  font-size: 11px;
  color: rgba(169, 188, 203, .68);
}

.page-news .filter-tab:hover {
  color: var(--cream);
  border-color: var(--mid);
}

.page-news .filter-radio:checked + .filter-tab {
  color: var(--night);
  background: var(--amber);
  border-color: var(--amber);
}

.page-news .filter-radio:checked + .filter-tab span {
  color: rgba(11, 42, 34, .7);
}

.page-news .filter-radio:focus-visible + .filter-tab {
  outline: 2px solid var(--glow);
  outline-offset: 2px;
}

.page-news .art-list {
  flex: 0 0 100%;
  width: 100%;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--pn-rule);
}

.page-news .art-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-areas:
    "no body"
    ". time";
  gap: 4px 12px;
  padding: 14px 8px 14px 0;
  border-bottom: 1px solid var(--pn-rule);
  border-left: 3px solid transparent;
  transition: background .18s ease, border-left-color .18s ease;
}

.page-news .art-item:hover,
.page-news .art-item:focus-within {
  background: rgba(53, 224, 139, .05);
  border-left-color: var(--glow);
}

.page-news .art-item__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(169, 188, 203, .55);
  padding-top: 3px;
}

.page-news .art-item__body {
  grid-area: body;
  min-width: 0;
  display: grid;
  gap: 5px;
}

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

.page-news .art-item__stage {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(169, 188, 203, .62);
}

.page-news .art-item__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.5;
}

.page-news .art-item__title a {
  color: var(--cream);
  text-decoration: none;
  transition: color .18s ease;
}

.page-news .art-item__title a:hover,
.page-news .art-item__title a:focus-visible {
  color: var(--glow);
}

.page-news .art-item__title a:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 2px;
}

.page-news .art-item__excerpt {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-light);
  transition: max-height .24s ease, margin .24s ease;
}

.page-news .art-item:hover .art-item__excerpt,
.page-news .art-item:focus-within .art-item__excerpt {
  max-height: 6em;
  margin-top: 4px;
}

.page-news .art-item__time {
  grid-area: time;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(169, 188, 203, .6);
}

@media (min-width: 860px) {
  .page-news .art-item {
    grid-template-columns: 52px minmax(0, 1fr) 118px;
    grid-template-areas: "no .page-news time";
    align-items: baseline;
    gap: 4px 18px;
    padding: 15px 14px 15px 12px;
  }

  .page-news .art-item__time {
    text-align: right;
  }

  .page-news .art-item__no {
    font-size: 13px;
  }
}

/* 纯 CSS 专栏筛选 */
.page-news #filter-injury:checked ~ .art-list .art-item:not([data-col="injury"]) {
  display: none;
}
.page-news #filter-number:checked ~ .art-list .art-item:not([data-col="number"]) {
  display: none;
}
.page-news #filter-transfer:checked ~ .art-list .art-item:not([data-col="transfer"]) {
  display: none;
}
.page-news #filter-stand:checked ~ .art-list .art-item:not([data-col="stand"]) {
  display: none;
}

/* ---------- 专题系列 ---------- */
.page-news .feature-card {
  display: grid;
  gap: 0;
  background: var(--field);
  border: 1px solid var(--pn-rule);
  border-left: 4px solid var(--amber);
  overflow: hidden;
}

@media (min-width: 900px) {
  .page-news .feature-card {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.page-news .feature-card__media {
  margin: 0;
  min-width: 0;
}

.page-news .feature-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .feature-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.6vw, 32px);
}

.page-news .feature-card__kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--amber);
}

.page-news .feature-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.22;
  color: var(--cream);
}

.page-news .feature-card__body > p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--slate-light);
}

.page-news .feature-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.page-news .feature-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--slate-light);
}

.page-news .feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 2px;
  background: var(--tactic);
}

.page-news .feature-card__list strong {
  color: var(--cream);
  font-weight: 600;
}

/* ---------- 阶段归档 ---------- */
.page-news .news-stages__media {
  margin: 0 0 22px;
}

.page-news .news-stages__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--pn-rule);
}

.page-news .stage-scale {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 16px;
}

@media (min-width: 720px) {
  .page-news .stage-scale {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-news .stage-scale__link {
  display: block;
  padding: 11px 10px 8px;
  border-top: 3px solid var(--mid);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--slate-light);
  text-decoration: none;
  transition: color .18s ease, border-top-color .18s ease;
}

.page-news .stage-scale__link:hover,
.page-news .stage-scale__link:focus-visible {
  color: var(--glow);
  border-top-color: var(--glow);
}

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

.page-news .stage-scale__link.is-current {
  color: var(--amber);
  border-top-color: var(--amber);
}

.page-news .stage-list {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(16px, 3vw, 34px);
}

.page-news .stage-block {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(36, 28, 20, .28);
}

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

.page-news .stage-block:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.page-news .stage-block__kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--amber-deep);
}

.page-news .stage-block__body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.2;
  color: var(--ink);
}

.page-news .stage-block__body p {
  margin: 0;
  max-width: 64ch;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--pn-ink-soft);
}

.page-news .stage-block__count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(36, 28, 20, .55);
}

@media (min-width: 780px) {
  .page-news .stage-block {
    grid-template-columns: 48px minmax(0, 1fr) 110px;
    gap: 0 20px;
    align-items: start;
  }

  .page-news .stage-block__count {
    text-align: right;
    padding-top: 4px;
  }
}

/* ---------- 阅读顺序 ---------- */
.page-news .read-paths {
  display: grid;
  gap: 18px;
}

@media (min-width: 800px) {
  .page-news .read-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
  }

  .page-news .read-path:nth-child(2) {
    margin-top: 24px;
  }

  .page-news .read-path:nth-child(3) {
    margin-top: 48px;
  }
}

.page-news .read-path {
  padding: 18px 16px 20px;
  background: var(--field);
  border: 1px solid var(--pn-rule);
  border-top: 3px solid var(--mid);
  transition: border-top-color .2s ease, transform .2s ease;
}

.page-news .read-path:hover {
  transform: translateY(-2px);
  border-top-color: var(--glow);
}

.page-news .read-path__role {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--amber);
}

.page-news .read-path__steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: rp;
  display: grid;
  gap: 10px;
}

.page-news .read-path__steps li {
  counter-increment: rp;
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--slate-light);
}

.page-news .read-path__steps li::before {
  content: counter(rp, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: .12em;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(53, 224, 139, .75);
}

.page-news .read-path__steps a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--mid);
  transition: color .16s ease, border-bottom-color .16s ease;
}

.page-news .read-path__steps a:hover,
.page-news .read-path__steps a:focus-visible {
  color: var(--glow);
  border-bottom-color: var(--glow);
}

.page-news .read-path__steps a:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 2px;
}

/* ---------- 投稿 ---------- */
.page-news .news-submit {
  border-bottom: 0;
  padding-bottom: clamp(38px, 5vw, 70px);
}

.page-news .news-submit__inner {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3.2vw, 40px);
  background: linear-gradient(150deg, rgba(53, 224, 139, .09), rgba(11, 42, 34, .2) 46%, rgba(255, 176, 32, .07));
  border: 1px solid var(--pn-rule);
  border-left: 4px solid var(--alert);
}

@media (min-width: 900px) {
  .page-news .news-submit__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 48px;
    align-items: start;
  }
}

.page-news .news-submit__intro {
  display: grid;
  gap: 10px;
}

.page-news .news-submit__intro p {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--slate-light);
}

.page-news .news-submit__contact {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 6px;
  border-top: 2px solid var(--amber);
}

.page-news .news-submit__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--slate-light);
}

.page-news .news-submit__mail {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--cream);
  overflow-wrap: anywhere;
}

.page-news .news-submit__hint {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(169, 188, 203, .82);
}

.page-news .news-submit__contact .btn {
  justify-self: start;
}
