.page-news {
  overflow-x: clip;
  background: var(--ink-900);
  color: var(--slate-muted);
  font-family: var(--font-body);
  font-size: var(--fs-16);
  line-height: 1.75;
}

.page-news .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- 面包屑 ---------- */
.page-news .news-topline {
  padding-top: 22px;
}
.page-news .news-crumb {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-news .news-crumb a {
  color: var(--slate-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.page-news .news-crumb a:hover,
.page-news .news-crumb a:focus-visible {
  color: var(--cyan-live);
  border-bottom-color: var(--cyan-live);
  outline: none;
}
.page-news .news-crumb [aria-current="page"] {
  color: var(--cyan-live);
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-top: 26px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--blueprint-line);
}
@media (min-width: 900px) {
  .page-news .news-hero {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: end;
    padding-bottom: 72px;
  }
}

.page-news .news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 5px 11px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan-live);
  border: 1px solid rgba(41, 231, 255, .3);
  background: rgba(41, 231, 255, .07);
}

.page-news .news-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(36px, 8vw, 61px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--cream);
}

.page-news .news-hero__desc {
  margin: 0;
  max-width: 54ch;
  padding-left: 16px;
  border-left: 2px solid var(--blueprint-line);
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--slate-muted);
}

.page-news .news-hero__facts {
  list-style: none;
  margin: 26px 0 0;
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--blueprint-line);
  border: 1px solid var(--blueprint-line);
}
.page-news .news-hero__facts li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px;
  background: var(--ink-900);
}
.page-news .news-hero__facts .num {
  font-family: var(--font-mono);
  font-size: var(--fs-31);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan-live);
}
.page-news .news-hero__facts em {
  font-style: normal;
  font-size: var(--fs-12);
  line-height: 1.5;
  color: var(--slate-muted);
}

/* 赛季刻度尺 */
.page-news .news-ruler {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--blueprint-line);
  background: linear-gradient(155deg, rgba(14, 36, 56, .94), rgba(7, 24, 43, .98));
}
.page-news .news-ruler::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -14%;
  width: 56%;
  height: 160%;
  transform: skewX(-6deg);
  background: linear-gradient(180deg, rgba(41, 231, 255, .14), rgba(41, 231, 255, 0) 72%);
  pointer-events: none;
}
.page-news .news-ruler__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-muted);
}
.page-news .news-ruler__track {
  position: relative;
  height: 64px;
  margin: 18px 0 10px;
  border-bottom: 1px solid var(--blueprint-line);
  background-image: repeating-linear-gradient(
    90deg,
    var(--blueprint-line) 0,
    var(--blueprint-line) 1px,
    transparent 1px,
    transparent 8.3333%
  );
}
.page-news .news-ruler__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8.3333%;
  width: 2px;
  background: var(--orange-signal);
}
.page-news .news-ruler__track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8.3333%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--turf-green), var(--cyan-live));
}
.page-news .news-ruler__marks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .08em;
  color: var(--slate-muted);
}
.page-news .news-ruler__foot {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--blueprint-line);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .06em;
  color: var(--turf-green);
}

/* ---------- 置顶导读玻璃层 ---------- */
.page-news .news-digest-band {
  position: relative;
  padding: 54px 0;
  border-bottom: 1px solid var(--blueprint-line);
}
.page-news .news-digest-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 74, 107, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 74, 107, .55) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .38;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%, #000 76%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 76%, transparent);
}
.page-news .news-digest {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(41, 231, 255, .28);
  background: rgba(14, 36, 56, .68);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
@media (min-width: 900px) {
  .page-news .news-digest {
    grid-template-columns: 1.15fr .85fr;
  }
}
.page-news .news-digest__body {
  padding: 26px 22px 28px;
}
@media (min-width: 900px) {
  .page-news .news-digest__body {
    padding: 34px 34px 36px;
  }
}
.page-news .news-digest__tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 14px 4px 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .16em;
  color: var(--ink-900);
  background: var(--orange-signal);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.page-news .news-digest h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: var(--fs-25);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--cream);
}
.page-news .news-digest p {
  margin: 0;
  font-size: var(--fs-15);
  line-height: 1.8;
  color: var(--slate-muted);
}
.page-news .news-digest__points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-news .news-digest__points li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  font-size: var(--fs-15);
  line-height: 1.75;
  color: var(--slate-muted);
}
.page-news .news-digest__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--turf-green);
  transform: rotate(45deg);
}
.page-news .news-digest__links {
  margin-top: 20px !important;
}
.page-news .news-digest__link {
  display: inline-block;
  padding-bottom: 2px;
  font-family: var(--font-mono);
  font-size: var(--fs-15);
  letter-spacing: .04em;
  color: var(--cyan-live);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 231, 255, .5);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.page-news .news-digest__link:hover,
.page-news .news-digest__link:focus-visible {
  color: var(--orange-signal);
  border-bottom-color: var(--orange-signal);
}

.page-news .news-digest__media {
  margin: 0;
  border-top: 1px solid rgba(41, 231, 255, .2);
}
@media (min-width: 900px) {
  .page-news .news-digest__media {
    border-top: 0;
    border-left: 1px solid rgba(41, 231, 255, .2);
  }
}
.page-news .news-digest__frame {
  aspect-ratio: 7 / 5;
  overflow: hidden;
}
.page-news .news-digest__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-digest__media .media__cap {
  padding: 10px 16px;
  border-top: 1px solid rgba(41, 231, 255, .16);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .06em;
  color: var(--slate-muted);
  background: rgba(7, 24, 43, .7);
}

/* ---------- 标签条 ---------- */
.page-news .news-tagbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--blueprint-line);
  background: linear-gradient(90deg, rgba(14, 36, 56, .55), rgba(7, 24, 43, 0));
}
.page-news .news-tagbar__label {
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate-muted);
}
.page-news .news-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-news .news-tag {
  display: inline-block;
  padding: 6px 14px 6px 11px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--slate-muted);
  text-decoration: none;
  background: rgba(14, 36, 56, .82);
  border: 1px solid var(--blueprint-line);
  border-left: 3px solid var(--blueprint-line);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.page-news .news-tag:hover,
.page-news .news-tag:focus-visible {
  color: var(--cyan-live);
  background: rgba(41, 231, 255, .08);
  border-color: var(--cyan-live);
  outline: none;
}
.page-news .news-tag:focus-visible {
  box-shadow: 0 0 0 2px rgba(41, 231, 255, .5);
}
.page-news .news-tagbar__hint {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .06em;
  color: var(--slate-muted);
}
@media (min-width: 860px) {
  .page-news .news-tagbar__hint {
    margin-left: auto;
  }
}

/* ---------- 主列表区 ---------- */
.page-news .news-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (min-width: 1000px) {
  .page-news .news-body {
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 48px;
  }
}

.page-news .news-index {
  align-self: start;
}
@media (min-width: 1000px) {
  .page-news .news-index {
    position: sticky;
    top: calc(var(--cmd-h) + 28px);
  }
}
.page-news .news-index__title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blueprint-line);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate-muted);
}
.page-news .news-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
@media (min-width: 1000px) {
  .page-news .news-index__list {
    flex-direction: column;
    gap: 2px;
  }
}
.page-news .news-index__list a {
  display: block;
  padding: 6px 0 6px 10px;
  border-left: 2px solid transparent;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--slate-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.page-news .news-index__list a:hover,
.page-news .news-index__list a:focus-visible {
  color: var(--cyan-live);
  border-left-color: var(--cyan-live);
  outline: none;
}
.page-news .news-index__list a[aria-current="location"] {
  color: var(--cyan-live);
  border-left-color: var(--orange-signal);
}

.page-news .news-group {
  margin-bottom: 58px;
  scroll-margin-top: calc(var(--cmd-h) + 26px);
}
.page-news .news-group__head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--blueprint-line);
}
.page-news .news-group__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 88px;
  height: 3px;
  background: var(--orange-signal);
  transform: skewX(-30deg);
}
.page-news .news-group__idx {
  font-family: var(--font-mono);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .04em;
  color: var(--blueprint-line);
}
.page-news .news-group__head h2 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: var(--fs-25);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--cream);
}
.page-news .news-group__head p {
  margin: 0;
  max-width: 64ch;
  font-size: var(--fs-15);
  line-height: 1.75;
  color: var(--slate-muted);
}

.page-news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* 条目通用 */
.page-news .news-item__d > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
}
.page-news .news-item__d > summary::-webkit-details-marker {
  display: none;
}
.page-news .news-item__d > summary::marker {
  content: "";
}
.page-news .news-item__d > summary:focus-visible {
  outline: 2px solid var(--cyan-live);
  outline-offset: -2px;
}
.page-news .news-item__d > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: var(--fs-16);
  line-height: 1;
  color: var(--blueprint-line);
  transition: color var(--t-fast) var(--ease);
}
.page-news .news-item__d[open] > summary::after {
  content: "−";
  color: var(--cyan-live);
}
.page-news .news-item__no {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .1em;
  color: var(--blueprint-line);
}
.page-news .news-item__title {
  flex: 1 1 220px;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.6;
  color: var(--cream);
}
.page-news .news-item__when {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .06em;
  color: var(--slate-muted);
  white-space: nowrap;
}
.page-news .news-item__sum {
  margin: 0 18px 18px;
  padding-top: 13px;
  border-top: 1px dashed var(--blueprint-line);
  font-size: var(--fs-15);
  line-height: 1.78;
  color: var(--slate-muted);
}
.page-news .news-item__d[open] > summary .news-item__title {
  color: var(--cyan-live);
}

/* 标签徽标 */
.page-news .news-chip {
  flex: 0 0 auto;
  display: inline-block;
  padding: 2px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .14em;
  color: var(--cyan-live);
  border: 1px solid rgba(41, 231, 255, .4);
  background: rgba(41, 231, 255, .08);
}
.page-news .news-chip--report {
  color: var(--orange-signal);
  border-color: rgba(255, 106, 44, .45);
  background: rgba(255, 106, 44, .08);
}
.page-news .news-chip--version {
  color: var(--amber-flag);
  border-color: rgba(255, 194, 75, .45);
  background: rgba(255, 194, 75, .08);
}
.page-news .news-chip--topic {
  color: var(--turf-green);
  border-color: rgba(57, 201, 127, .45);
  background: rgba(57, 201, 127, .08);
}

/* 分组差异：战报 = 实色卡片 */
.page-news .news-group--reports .news-item {
  border: 1px solid var(--blueprint-line);
  border-left: 3px solid var(--orange-signal);
  background: linear-gradient(120deg, rgba(14, 36, 56, .9), rgba(7, 24, 43, .72));
  transition: border-color var(--t-fast) var(--ease);
}
.page-news .news-group--reports .news-item:hover {
  border-left-color: var(--cyan-live);
}
.page-news .news-group--reports .news-item:first-child {
  border-left-width: 4px;
  background: linear-gradient(120deg, rgba(14, 36, 56, .98), rgba(7, 24, 43, .62));
}
.page-news .news-group--reports .news-item:first-child .news-item__title {
  font-size: var(--fs-20);
  font-weight: 700;
}

/* 分组差异：观察 = 无底色分隔线行 */
.page-news .news-group--observe .news-item {
  border-bottom: 1px solid var(--blueprint-line);
  background: transparent;
}
.page-news .news-group--observe .news-item:last-child {
  border-bottom: 0;
}

/* 分组差异：版本 = 虚线框 + 青色竖条 */
.page-news .news-group--version .news-item {
  border: 1px dashed var(--blueprint-line);
  border-left: 3px solid var(--cyan-live);
  background: rgba(14, 36, 56, .55);
}
.page-news .news-group--version .news-item__no {
  color: var(--cyan-live);
}
.page-news .news-group--version .news-item__sum {
  border-top-style: dotted;
}

/* 分组差异：专题 = 绿色大号编号卡片 */
.page-news .news-group--topic .news-item {
  border: 1px solid var(--blueprint-line);
  background: rgba(14, 36, 56, .8);
}
.page-news .news-group--topic .news-item:hover {
  border-color: var(--turf-green);
}
.page-news .news-group--topic .news-item__no {
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--turf-green);
  line-height: 1;
}

/* 观察分组布局 */
.page-news .news-observe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 900px) {
  .page-news .news-observe-grid {
    grid-template-columns: minmax(0, 1fr) 248px;
    align-items: start;
    gap: 26px;
  }
}
.page-news .news-observe__media {
  margin: 0;
  border: 1px solid var(--blueprint-line);
  background: var(--panel-blue);
}
.page-news .news-observe__frame {
  aspect-ratio: 10 / 7;
  overflow: hidden;
}
.page-news .news-observe__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-observe__media .media__cap {
  padding: 9px 12px;
  border-top: 1px solid var(--blueprint-line);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .04em;
  color: var(--slate-muted);
}

/* 专题分组布局 */
.page-news .news-topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 780px) {
  .page-news .news-topic-grid {
    grid-template-columns: 216px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }
}
.page-news .news-topic__media {
  margin: 0;
  border: 1px solid var(--blueprint-line);
  background: var(--panel-blue);
}
.page-news .news-topic__frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.page-news .news-topic__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-topic__media .media__cap {
  padding: 9px 12px;
  border-top: 1px solid var(--blueprint-line);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .04em;
  color: var(--slate-muted);
}

/* ---------- 归档与订阅 ---------- */
.page-news .news-archive {
  position: relative;
  margin-top: 12px;
  padding: 58px 0 84px;
  border-top: 1px solid var(--blueprint-line);
  background:
    linear-gradient(180deg, rgba(14, 36, 56, .55), rgba(7, 24, 43, 0) 70%),
    radial-gradient(120% 80% at 88% 0%, rgba(57, 201, 127, .12), transparent 60%);
}
.page-news .news-archive__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) {
  .page-news .news-archive__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
  }
}
.page-news .news-archive h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(25px, 4vw, 39px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--cream);
}
.page-news .news-archive__copy > p {
  margin: 0 0 20px;
  max-width: 60ch;
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--slate-muted);
}
.page-news .news-archive__seasons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 0 0 24px;
  padding: 1px;
  background: var(--blueprint-line);
  border: 1px solid var(--blueprint-line);
}
.page-news .news-archive__seasons li {
  flex: 1 1 62px;
  padding: 9px 6px;
  text-align: center;
  background: var(--ink-900);
}
.page-news .news-archive__seasons .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--slate-muted);
}
.page-news .news-archive__seasons li:last-child {
  background: rgba(41, 231, 255, .12);
}
.page-news .news-archive__seasons li:last-child .num {
  color: var(--cyan-live);
  font-weight: 700;
}
.page-news .news-archive__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px !important;
}
.page-news .news-archive__note {
  margin: 0 !important;
  font-size: var(--fs-15);
  color: var(--slate-muted);
}
.page-news .news-archive__note a {
  color: var(--cyan-live);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 231, 255, .45);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.page-news .news-archive__note a:hover,
.page-news .news-archive__note a:focus-visible {
  color: var(--orange-signal);
  border-bottom-color: var(--orange-signal);
}
.page-news .news-archive__media {
  margin: 0;
  border: 1px solid var(--blueprint-line);
  background: var(--panel-blue);
}
.page-news .news-archive__frame {
  aspect-ratio: 12 / 5;
  overflow: hidden;
}
.page-news .news-archive__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-archive__media .media__cap {
  padding: 9px 12px;
  border-top: 1px solid var(--blueprint-line);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .04em;
  color: var(--slate-muted);
}

/* ---------- 窄屏收敛 ---------- */
@media (max-width: 620px) {
  .page-news .news-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-news .news-hero__facts li:last-child {
    grid-column: 1 / -1;
  }
  .page-news .news-item__d > summary {
    padding: 14px 14px;
  }
  .page-news .news-item__when {
    margin-left: 0;
    width: 100%;
  }
  .page-news .news-item__sum {
    margin: 0 14px 16px;
  }
  .page-news .news-digest__body {
    padding: 22px 18px 24px;
  }
  .page-news .news-archive__seasons li {
    flex: 1 1 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
