.page-news {
  --news-gap: clamp(20px, 3vw, 34px);
  --news-side: clamp(20px, 4vw, 52px);
  padding: clamp(20px, 4vw, 48px) 0 clamp(64px, 9vw, 120px);
  overflow-x: clip;
}

.page-news .breadcrumb {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

/* ---------- 首屏 ---------- */
.news-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: clamp(38px, 6vw, 72px);
  border-bottom: 1px solid var(--line-grey);
}

.page-news .news-intro__text {
  max-width: 760px;
}

.news-intro h1 {
  font-size: clamp(32px, 5.6vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
  margin: 10px 0 20px;
}

.news-intro .lead {
  max-width: 680px;
  color: var(--ink-soft);
}

.news-intro__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.news-intro__stats .pill {
  border: 1px solid var(--line-grey);
  background: var(--offside-white);
  color: var(--board-navy);
}

.page-news .note-vertical {
  color: var(--ink-mute);
}

.news-intro .note-vertical {
  justify-self: start;
}

/* ---------- 章节通用 ---------- */
.news-block {
  padding-top: clamp(46px, 7vw, 96px);
}

.news-block__lead {
  max-width: 660px;
  color: var(--ink-soft);
  margin-bottom: clamp(24px, 3.4vw, 42px);
  font-size: 17px;
  line-height: 1.85;
}

/* ---------- 01 主专题 ---------- */
.news-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--offside-white);
  background: linear-gradient(155deg, var(--board-navy) 0%, var(--turf-deep) 72%, #0f5230 100%);
  box-shadow: var(--shadow-card);
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(251, 250, 245, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 245, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.news-hero__body {
  position: relative;
  padding: var(--news-side);
}

.news-hero__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--board-navy);
  background: var(--whistle);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.news-hero__title {
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.news-hero__text {
  color: rgba(251, 250, 245, 0.84);
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.85;
}

.news-hero__dims {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
}

.news-hero__dims li {
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(251, 250, 245, 0.34);
  color: rgba(251, 250, 245, 0.9);
}

.news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-hero__media {
  border-radius: 0;
  margin: 0;
}

.news-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero__media figcaption {
  color: rgba(251, 250, 245, 0.72);
}

/* ---------- 02 前瞻条目流 ---------- */
.news-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.news-feed__col {
  display: grid;
  gap: 0;
}

.news-item {
  position: relative;
  padding: 24px 0 24px 18px;
  border-bottom: 1px solid var(--line-grey);
  transition: background var(--t-base) var(--ease);
}

.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 0;
  border-radius: var(--radius-pill);
  background: var(--whistle);
  transition: height var(--t-base) var(--ease);
}

.news-item:hover::before,
.news-item:focus-within::before {
  height: calc(100% - 52px);
}

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

.news-item__idx {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.news-item__cat {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--board-navy);
  color: var(--board-navy);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.news-item:hover .news-item__cat {
  background: var(--whistle);
  border-color: var(--whistle);
}

.news-item__time {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-left: auto;
}

.news-item__title {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-item__title a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--whistle), var(--whistle));
  background-repeat: no-repeat;
  background-size: 0% 42%;
  background-position: 0 88%;
  transition: background-size var(--t-base) var(--ease);
  padding: 0 2px;
}

.news-item__title a:hover,
.news-item__title a:focus-visible {
  background-size: 100% 42%;
}

.news-item__desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.news-item__dims {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--turf-deep);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.news-item:hover .news-item__dims,
.news-item:focus-within .news-item__dims {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 03 判罚研究 ---------- */
.penalty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.penalty-note {
  padding: 22px 0;
  border-top: 1px solid var(--line-grey);
}

.penalty-note:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.penalty-note__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.penalty-note__title {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.4;
}

.penalty-note__title a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--turf-bright);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.penalty-note__title a:hover,
.penalty-note__title a:focus-visible {
  color: var(--turf-deep);
  border-color: var(--whistle);
}

.mini-trend {
  flex: none;
  width: 92px;
  height: 32px;
}

.page-news .mini-trend polyline {
  stroke: var(--data-teal);
}

.page-news .mini-trend circle {
  fill: var(--whistle);
}

.penalty-note__desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.82;
  max-width: 620px;
}

.penalty-note__unit {
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.penalty-grid__media {
  margin: 0;
  border-radius: var(--radius-card);
}

.penalty-grid__media img,
.series-layout__media img,
.rewind-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.penalty-grid__media figcaption,
.series-layout__media figcaption,
.rewind-media figcaption {
  color: rgba(251, 250, 245, 0.78);
}

/* ---------- 04 赛季回望 ---------- */
.rewind-media {
  margin: 0 0 clamp(26px, 3.6vw, 44px);
  border-radius: var(--radius-card);
}

.rewind-line {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.rewind-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line-grey);
  position: relative;
}

.rewind-item:last-child {
  border-bottom: 1px solid var(--line-grey);
}

.rewind-item__year {
  font-size: 22px;
  font-weight: 500;
  color: var(--turf-deep);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.rewind-item__title {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 8px;
}

.rewind-item__title a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--whistle), var(--whistle));
  background-repeat: no-repeat;
  background-size: 0% 42%;
  background-position: 0 88%;
  transition: background-size var(--t-base) var(--ease);
}

.rewind-item__title a:hover,
.rewind-item__title a:focus-visible {
  background-size: 100% 42%;
}

.rewind-item__body p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.82;
  max-width: 640px;
}

/* ---------- 05 系列与标签 ---------- */
.series-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.tag-wall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tag-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--board-navy);
  background: var(--offside-white);
  color: var(--board-navy);
  text-decoration: none;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
}

.tag-pill:hover,
.tag-pill:focus-visible {
  background: var(--whistle);
  border-color: var(--whistle);
  transform: translateY(-2px);
}

.tag-pill__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag-pill__freq {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  justify-self: end;
}

.tag-pill:hover .tag-pill__freq {
  color: var(--board-navy);
}

.tag-pill__more {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

.tag-pill:hover .tag-pill__more,
.tag-pill:focus-visible .tag-pill__more {
  max-height: 44px;
  opacity: 1;
}

.series-layout__media {
  margin: 0;
  border-radius: var(--radius-card);
}

/* ---------- 06 纠错与引用 ---------- */
.contribute-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.contribute-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line-grey);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 32px);
  background: var(--offside-white);
}

.contribute-card .card__title {
  margin-bottom: 12px;
}

.contribute-card .card__text {
  flex: 1;
  margin-bottom: 20px;
}

.contribute-card .btn {
  text-decoration: none;
}

.contribute-card__mail {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--board-navy);
  background: var(--whistle-soft);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  word-break: break-all;
}

/* ---------- 焦点样式 ---------- */
.page-news a:focus-visible,
.page-news .tag-pill:focus-visible {
  outline: 2px solid var(--whistle);
  outline-offset: 3px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .tag-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contribute-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .news-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 40px;
  }

  .news-intro .note-vertical {
    justify-self: end;
  }

  .news-hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .news-feed {
    grid-template-columns: 1.12fr 0.88fr;
    column-gap: clamp(32px, 4.5vw, 72px);
  }

  .news-feed__col--offset {
    margin-top: 64px;
  }

  .penalty-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    column-gap: clamp(32px, 4.5vw, 64px);
    align-items: start;
  }

  .penalty-grid__media {
    position: sticky;
    top: calc(var(--topbar-h) + 24px);
  }

  .series-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    column-gap: clamp(32px, 4.5vw, 64px);
    align-items: start;
  }

  .tag-wall {
    grid-template-columns: 1fr;
  }

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

  .contribute-grid > :first-child {
    grid-column: auto;
  }
}

@media (min-width: 1200px) {
  .tag-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (hover: none) {
  .news-item__dims {
    opacity: 1;
    transform: none;
  }

  .tag-pill__more {
    max-height: 44px;
    opacity: 1;
  }
}
