/* ===== 赛季动态 / page-news ===== */

.page-news {
  --news-pad: clamp(3rem, 8vw, 6rem);
  --news-text: rgba(245, 241, 230, 0.82);
  --news-text-dim: rgba(195, 203, 199, 0.72);
  background: var(--ink-green);
  color: var(--paper);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-news .news-prose {
  max-width: 42rem;
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--news-text);
}

.page-news .news-side-text {
  margin: 0 0 1.1rem;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--news-text-dim);
}

/* ---------- 面包屑 ---------- */
.page-news .ht-crumb {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--news-text-dim);
}

.page-news .ht-crumb a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.page-news .ht-crumb a:hover {
  color: var(--ref-yellow);
  border-bottom-color: var(--ref-yellow);
}

/* ---------- 首屏框景 ---------- */
.news-masthead {
  padding: calc(var(--header-h) + 1.75rem) 0 2.25rem;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(46, 158, 99, 0.2), transparent 62%),
    linear-gradient(180deg, var(--ink-green) 0%, var(--ink-green-2) 100%);
}

.news-frame {
  position: relative;
  margin-top: 1.6rem;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid var(--line-dark);
}

.news-frame::before,
.news-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ref-yellow);
}

.news-frame::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.news-frame::after {
  right: -1px;
  bottom: -1px;
  border-top: 0;
  border-left: 0;
}

.news-frame__grid {
  display: grid;
  gap: 1.75rem;
}

.news-title {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.news-lede {
  max-width: 36rem;
  margin: 1.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--news-text);
}

.news-frame__foot {
  margin: 1.75rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.news-cadence {
  padding-left: 1.1rem;
  border-left: 2px solid var(--turf);
}

.news-cadence__list {
  display: grid;
  gap: 0.85rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.news-cadence__list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.news-cadence__num {
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ref-yellow);
}

.news-cadence__txt {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--news-text-dim);
}

/* ---------- 栏目标签条 ---------- */
.news-filterbar {
  position: sticky;
  top: calc(var(--header-h) - 8px);
  z-index: 30;
  padding: 0.6rem 0;
  background: linear-gradient(180deg, rgba(11, 42, 34, 0.94), rgba(11, 42, 34, 0.74));
  border-bottom: 1px solid var(--line-dark);
}

.news-filter__list {
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-filter__list::-webkit-scrollbar {
  display: none;
}

.news-filter__link {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  color: var(--silver);
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.news-filter__link:hover {
  color: var(--paper);
  border-color: var(--turf);
  background: rgba(46, 158, 99, 0.18);
}

.news-filter__link[data-current="true"] {
  background: var(--ref-yellow);
  border-color: var(--ref-yellow);
  color: var(--ink-green);
  font-weight: 700;
}

/* ---------- 图片 ---------- */
.news-banner-wrap {
  margin-top: 1.85rem;
  margin-bottom: 0.5rem;
}

.page-news .news-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--ink-green-2);
}

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

.news-shot--wide {
  aspect-ratio: 3 / 2;
}

.news-shot--strip {
  aspect-ratio: 2 / 1;
}

.news-shot--square {
  aspect-ratio: 1 / 1;
}

.page-news .ht-figure__caption {
  margin-top: 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--news-text-dim);
}

/* ---------- 分区 ---------- */
.news-zone--dark {
  background: var(--ink-green);
}

.news-zone--mid {
  background: var(--ink-green-2);
}

.news-zone--indigo {
  padding: var(--news-pad) 0;
  background: var(--indigo);
  clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%);
}

.news-zone--paper {
  padding: var(--news-pad) 0;
  background: var(--paper);
  color: var(--black);
}

.news-zone--paper .ht-section-head__title,
.news-zone--paper .news-revisit__title {
  color: var(--ink-green);
}

.news-zone--paper .ht-annot,
.news-zone--paper .ht-section-head__meta {
  color: rgba(18, 16, 14, 0.6);
}

.news-zone--paper .ht-section-head__no {
  color: var(--wine);
}

/* ---------- 条目列表 ---------- */
.news-feed {
  border-top: 1px solid var(--line-dark);
}

.news-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.news-item__bar {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
  width: 6px;
  background: var(--turf);
  transition: width var(--t-fast), background-color var(--t-fast);
}

.news-item[data-cat="injury"] .news-item__bar {
  background: var(--injury-red);
}

.news-item[data-cat="ref"] .news-item__bar {
  background: var(--ref-yellow);
}

.news-item[data-cat="review"] .news-item__bar {
  background: var(--turf);
}

.news-item[data-cat="platform"] .news-item__bar {
  background: var(--silver);
}

.news-item[data-cat="method"] .news-item__bar {
  background: var(--wine);
}

.news-item__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.news-item__mark {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(195, 203, 199, 0.55);
  transition: color var(--t-fast);
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}

.news-item__phase {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: var(--news-text-dim);
}

.news-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.news-item__sum {
  max-width: 46rem;
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--news-text);
}

.news-item__extra {
  max-width: 46rem;
  margin: 0.5rem 0 0;
  font-size: 0.76rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: rgba(195, 203, 199, 0.66);
}

.news-item:hover .news-item__mark {
  color: var(--ref-yellow);
}

/* ---------- 名单与号码对照 ---------- */
.news-refs {
  display: grid;
  gap: 2rem;
}

.news-refs__main {
  min-width: 0;
}

.news-refs__side {
  min-width: 0;
}

.news-scale {
  display: flex;
  gap: 0.5rem;
  margin: 0.55rem 0 1.5rem;
  padding-bottom: 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.news-scale__item {
  display: grid;
  flex: 0 0 auto;
  gap: 0.2rem;
  min-width: 5.4rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(11, 42, 34, 0.5);
  text-decoration: none;
  transition: border-color var(--t-fast), background-color var(--t-fast);
}

.news-scale__item:hover {
  border-color: var(--turf);
  background: rgba(46, 158, 99, 0.18);
}

.news-scale__item .ht-data {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ref-yellow);
}

.news-scale__lab {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--silver);
}

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

.news-archive__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 0.4rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--line-dark);
  scroll-margin-top: calc(var(--header-h) + 5rem);
  transition: background-color var(--t-fast);
}

.news-archive__row:target {
  background: rgba(242, 194, 48, 0.14);
  box-shadow: inset 3px 0 0 var(--ref-yellow);
}

.news-archive__year {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--paper);
}

.news-archive__scope {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--news-text-dim);
}

.news-archive__count {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--silver);
  text-align: right;
}

.news-archive__count b {
  font-size: 1rem;
  color: var(--ref-yellow);
}

.news-refs__side .ht-btn {
  margin-top: 0.35rem;
}

/* ---------- 伤停速报 ---------- */
.news-injury {
  display: grid;
  gap: 2rem;
}

.news-injury__body {
  min-width: 0;
}

.page-news .ht-details {
  margin-bottom: 1rem;
  border-top: 1px solid var(--line-dark);
}

.page-news .ht-details__summary {
  padding: 0.8rem 0;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  cursor: pointer;
}

.page-news .ht-details__body {
  padding: 0 0 1rem;
}

.page-news .ht-details__body p {
  max-width: 42rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--news-text-dim);
}

.news-rounds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.news-rounds li {
  padding: 0.34rem 0.72rem;
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: var(--silver);
}

.news-rounds li:first-child {
  border-style: solid;
  border-color: var(--ref-yellow);
  color: var(--ref-yellow);
}

/* ---------- 靛紫分区内的子章节 ---------- */
.news-sub {
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.14);
}

.news-sub:last-child {
  border-bottom: 0;
  padding-bottom: 0.5rem;
}

.news-sub__grid {
  display: grid;
  gap: 1.85rem;
  align-items: start;
}

.news-sub .ht-section-head__title {
  color: var(--paper);
}

.news-sub .ht-section-head__no {
  color: var(--ref-yellow);
}

.news-sub .ht-section-head__meta {
  color: var(--news-text-dim);
}

.news-sub .ht-annot {
  color: var(--news-text-dim);
}

/* 版本记录 */
.news-versions {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.news-versions__row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.4rem 1rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color var(--t-fast);
}

.news-versions__row:hover {
  background: rgba(242, 194, 48, 0.1);
}

.news-versions__no {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ref-yellow);
}

.news-versions__txt {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--news-text);
}

/* 三道复核 */
.news-checks {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-checks__item {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--turf);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: rgba(11, 42, 34, 0.34);
  transition: border-left-color var(--t-fast), background-color var(--t-fast);
}

.news-checks__item:hover {
  border-left-color: var(--ref-yellow);
  background: rgba(11, 42, 34, 0.55);
}

.news-checks__no {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--silver);
}

.news-checks__title {
  margin: 0.4rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
}

.news-checks__txt {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--news-text-dim);
}

/* ---------- 回看与咨询 ---------- */
.news-revisit {
  display: grid;
  gap: 1.5rem;
}

.news-revisit__col {
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--turf);
  background: var(--paper-card);
}

.news-revisit__col:nth-child(2) {
  border-top-color: var(--ref-yellow);
}

.news-revisit__col:nth-child(3) {
  border-top-color: var(--wine);
}

.news-revisit__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.news-revisit__col p {
  margin: 0 0 0.85rem;
  font-size: 0.87rem;
  line-height: 1.85;
  color: rgba(18, 16, 14, 0.78);
}

.news-link {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink-green-2);
  border-bottom: 1px solid var(--turf);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.news-link:hover {
  color: var(--wine);
  border-bottom-color: var(--wine);
}

.news-link--inline {
  margin: 0 0.15rem;
}

.news-revisit__foot {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.news-revisit__note {
  max-width: 44rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(18, 16, 14, 0.72);
}

.news-revisit__foot .ht-btn {
  justify-self: start;
}

/* ---------- 平板与桌面 ---------- */
@media (min-width: 720px) {
  .news-frame__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 2.75rem;
    align-items: start;
  }

  .news-cadence {
    margin-top: 1.4rem;
  }

  .news-refs {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 2.75rem;
  }

  .news-injury {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
    align-items: start;
  }

  .news-sub__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 2.75rem;
  }

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

  .news-revisit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .news-revisit__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
  }

  .news-revisit__foot .ht-btn {
    justify-self: end;
  }
}

@media (min-width: 820px) {
  .news-item {
    grid-template-columns: 8px minmax(0, 1fr) minmax(4.5rem, auto);
    column-gap: 1.5rem;
    align-items: start;
    padding: 1.3rem 0;
  }

  .news-item__bar {
    grid-row: 1;
  }

  .news-item__body {
    grid-column: 2;
    grid-row: 1;
  }

  .news-item__mark {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    font-size: 1.85rem;
    text-align: right;
    line-height: 1.15;
  }

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

  .news-item__extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 180ms linear, opacity 180ms linear;
  }

  .news-item:hover .news-item__extra {
    max-height: 5rem;
    opacity: 1;
  }
}

/* ---------- 窄屏收边 ---------- */
@media (max-width: 560px) {
  .news-archive__row {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .news-archive__count {
    grid-column: 2;
    text-align: left;
  }

  .news-versions__row {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }
}

/* ---------- 减少动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition: none !important;
  }

  .news-item__extra {
    max-height: none;
    opacity: 1;
  }
}
<<<END>>>
