.page-news {
  background: var(--c-bg);
  color: var(--c-text);
}

.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

/* ===== 面包屑 ===== */
.page-news .breadcrumb {
  padding-top: 24px;
}

.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--c-mute);
}

.page-news .breadcrumb a {
  color: var(--c-deep);
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.page-news .breadcrumb a:hover {
  background: rgba(57, 255, 20, 0.14);
  color: var(--c-deep);
}

.page-news .breadcrumb li[aria-current="page"] {
  font-weight: 700;
  color: var(--c-deep);
}

/* ===== Hero 区 ===== */
.page-news .news-hero {
  background: var(--c-deep);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 24%;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.35), rgba(255, 107, 0, 0));
  clip-path: polygon(20% 0, 100% 30%, 80% 100%, 0 75%);
  pointer-events: none;
}

.page-news .news-hero__inner {
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-news .news-hero__content {
  max-width: 560px;
}

.page-news .news-hero h1 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
  margin: 12px 0 14px;
  letter-spacing: -0.02em;
}

.page-news .news-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

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

.page-news .news-hero__actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.page-news .news-hero__actions .btn-outline:hover {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: #ffffff;
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-news .news-hero__stat {
  background: var(--c-deep-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(3, 10, 32, 0.4);
}

.page-news .news-hero__stat--3 {
  grid-column: 1 / -1;
}

.page-news .news-hero__stat::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.28), transparent 70%);
  pointer-events: none;
}

.page-news .news-hero__stat .stat-card__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.page-news .news-hero__stat .stat-card__value {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.page-news .news-hero__stat .data-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
}

.page-news .news-hero__stat .stat-card__unit {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.page-news .news-hero__stripe {
  position: absolute;
  right: -40px;
  bottom: 36px;
  width: 220px;
  height: 18px;
  opacity: 0.7;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 0;
}

/* ===== 主体双栏布局 ===== */
.page-news .news-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 36px;
  padding-bottom: 64px;
}

.page-news .news-main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 0;
}

/* ===== 索引栏 ===== */
.page-news .news-index {
  order: 1;
}

.page-news .news-index__inner {
  background: var(--c-white);
  border: 1px solid #e6eaf2;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--sh-card);
}

.page-news .news-index__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 4px;
}

.page-news .news-index__title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--c-deep);
}

.page-news .news-index__list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-news .news-index__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--c-bg);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--c-deep);
  white-space: nowrap;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.page-news .news-index__list a:hover {
  background: var(--c-neon);
  color: var(--c-deep);
  transform: translateY(-1px);
}

.page-news .news-index__no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-orange);
}

.page-news .news-index__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #edf0f5;
}

.page-news .news-index__note p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-mute);
}

/* ===== 区块头 ===== */
.page-news .news-section__head {
  margin-bottom: 20px;
}

.page-news .news-section__head .section-label {
  display: inline-block;
  margin-bottom: 6px;
}

.page-news .news-section__head h2 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  margin: 0;
  color: var(--c-deep);
  position: relative;
  padding-bottom: 10px;
}

.page-news .news-section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-cyan));
  border-radius: 3px;
}

/* ===== 编辑手记 ===== */
.page-news .news-editors-note {
  position: relative;
  background: var(--c-white);
  border-left: 3px solid var(--c-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px 18px 52px;
  margin-bottom: 24px;
  box-shadow: var(--sh-card);
}

.page-news .news-editors-note__mark {
  position: absolute;
  left: 16px;
  top: 8px;
  font-family: var(--font-headline);
  font-size: 44px;
  line-height: 1;
  color: var(--c-orange);
  opacity: 0.4;
  pointer-events: none;
}

.page-news .news-editors-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
}

/* ===== 时间线 ===== */
.page-news .timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-neon), var(--c-cyan), var(--c-orange));
  border-radius: 2px;
}

.page-news .timeline__item {
  position: relative;
  padding: 0 0 24px 24px;
}

.page-news .timeline__item:last-child {
  padding-bottom: 0;
}

.page-news .timeline__dot {
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--c-deep);
  border: 3px solid var(--c-neon);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.2);
}

.page-news .timeline__card {
  padding: 20px;
}

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

.page-news .timeline__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-mute);
  letter-spacing: 0.03em;
}

.page-news .timeline__card h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--c-deep);
}

.page-news .timeline__card > p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: #3a475c;
}

/* ===== 展开交互 ===== */
.page-news .news-expand {
  margin-top: 12px;
  border-top: 1px solid #e6eaf2;
  padding-top: 10px;
}

.page-news .news-expand summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  transition: color var(--duration) var(--ease);
}

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

.page-news .news-expand summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  color: var(--c-orange);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.page-news .news-expand[open] summary::before {
  content: "−";
}

.page-news .news-expand[open] summary {
  color: var(--c-deep);
}

.page-news .news-expand p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
}

.page-news .news-expand--light {
  border-top-color: var(--c-line);
}

.page-news .news-expand--light summary {
  color: var(--c-neon);
}

.page-news .news-expand--light summary::before {
  background: rgba(57, 255, 20, 0.14);
  color: var(--c-neon);
}

.page-news .news-expand--light[open] summary {
  color: var(--c-neon);
}

.page-news .news-expand--light p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 赛季专题 / Feature Card ===== */
.page-news .feature-card {
  background: var(--c-deep);
  color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-card);
}

.page-news .feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 8px;
  background: var(--c-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.85;
  pointer-events: none;
}

.page-news .feature-card__media {
  position: relative;
}

.page-news .feature-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-news .feature-card__media .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.page-news .feature-card__body {
  padding: 24px;
}

.page-news .feature-card__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 8px;
}

.page-news .feature-card__body h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
}

.page-news .feature-card__body > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.page-news .feature-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}

.page-news .feature-card__stat .data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--c-neon);
  line-height: 1;
  margin-bottom: 6px;
}

.page-news .feature-card__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Mini Chart ===== */
.page-news .mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  min-height: 140px;
  padding: 20px 24px;
  margin: 16px 0 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.page-news .mini-chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.page-news .mini-chart__value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-neon);
}

.page-news .mini-chart__bar {
  width: 48px;
  max-width: 80px;
  border-radius: 6px 6px 0 0;
  min-height: 20px;
}

.page-news .mini-chart__bar--a {
  background: linear-gradient(to top, var(--c-neon), rgba(57, 255, 20, 0.2));
}

.page-news .mini-chart__bar--b {
  background: linear-gradient(to top, var(--c-orange), rgba(255, 107, 0, 0.2));
}

.page-news .mini-chart__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .mini-chart__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0;
}

/* ===== Season Pair ===== */
.page-news .season-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.page-news .season-pair__card {
  padding: 0;
  overflow: hidden;
}

.page-news .season-pair__card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.page-news .season-pair__body {
  padding: 20px;
}

.page-news .season-pair__body h4 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--c-deep);
}

.page-news .season-pair__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
  margin: 0 0 14px;
}

.page-news .season-pair__card.bento-card--dark {
  background: var(--c-deep-2);
}

.page-news .season-pair__card.bento-card--dark h4 {
  color: #ffffff;
}

.page-news .season-pair__card.bento-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .season-pair__card.bento-card--dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.page-news .season-pair__card.bento-card--dark .btn-outline:hover {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: #ffffff;
}

/* ===== 教程区 ===== */
.page-news .tutorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .tutorial-card {
  padding: 0;
  overflow: hidden;
}

.page-news .tutorial-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.page-news .tutorial-card__body {
  padding: 22px 20px;
}

.page-news .tutorial-card__body .tag {
  margin-bottom: 10px;
}

.page-news .tutorial-card__body h3 {
  font-family: var(--font-headline);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--c-deep);
}

.page-news .tutorial-card__body > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
  margin: 0 0 14px;
}

.page-news .tutorial-card__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.page-news .tutorial-card__steps li {
  counter-increment: step;
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}

.page-news .tutorial-card__steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-orange);
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 2px 5px;
}

.page-news .tutorial-card__features {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.page-news .tutorial-card__features li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-news .tutorial-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--c-neon);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-news .tutorial-card.bento-card--dark {
  background: var(--c-deep);
}

.page-news .tutorial-card.bento-card--dark .tutorial-card__body h3 {
  color: #ffffff;
}

.page-news .tutorial-card.bento-card--dark .tutorial-card__body > p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 用户故事 ===== */
.page-news .story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .story-quote {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.page-news .story-quote img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .story-quote blockquote {
  position: relative;
  margin: 0;
  padding: 20px 24px 8px;
}

.page-news .story-quote blockquote::before {
  content: "“";
  position: absolute;
  top: -4px;
  left: 16px;
  font-family: var(--font-headline);
  font-size: 56px;
  line-height: 1;
  color: var(--c-orange);
  opacity: 0.3;
  pointer-events: none;
}

.page-news .story-quote blockquote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-deep);
  font-weight: 500;
}

.page-news .story-quote figcaption {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--c-mute);
}

.page-news .story-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .story-side__card {
  padding: 20px;
}

.page-news .story-side__card .data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--c-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.page-news .story-side__card .data-num::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--c-neon);
  margin-top: 8px;
  border-radius: 3px;
}

.page-news .story-side__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-mute);
}

/* ===== 订阅横幅 ===== */
.page-news .subscribe-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--c-deep-2), var(--c-deep) 55%, rgba(230, 0, 18, 0.35));
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  color: #ffffff;
  text-align: center;
  margin-top: 12px;
  box-shadow: var(--sh-card);
}

.page-news .subscribe-banner::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-orange), var(--c-red));
  border-radius: 5px 5px 0 0;
}

.page-news .subscribe-banner__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-neon);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.page-news .subscribe-banner h2 {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  color: #ffffff;
}

.page-news .subscribe-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.7;
}

.page-news .subscribe-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news .subscribe-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.page-news .subscribe-banner .btn-outline:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #ffffff;
}

/* ===== 桌面端增强 ===== */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 56px 0 64px;
  }

  .page-news .news-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-news .news-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-hero__stat--3 {
    grid-column: auto;
  }

  .page-news .news-index__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-news .news-section--wide {
    margin-left: -12px;
    margin-right: -12px;
  }

  .page-news .news-section--wide .feature-card,
  .page-news .news-section--wide .season-pair {
    margin-left: 12px;
    margin-right: 12px;
  }

  .page-news .feature-card__body {
    padding: 28px;
  }

  .page-news .feature-card__body h3 {
    font-size: 26px;
  }

  .page-news .feature-card__stats {
    gap: 40px;
  }

  .page-news .season-pair {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .tutorial-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .page-news .story-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-news .subscribe-banner {
    padding: 52px 40px;
  }
}

@media (min-width: 992px) {
  .page-news .news-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }

  .page-news .news-index {
    flex: 0 0 260px;
    order: 0;
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-news .news-index__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-news .news-index__list a {
    justify-content: flex-start;
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    white-space: normal;
  }

  .page-news .news-index__list a:hover {
    transform: translateX(4px);
  }

  .page-news .news-main {
    flex: 1;
    min-width: 0;
    gap: 64px;
  }

  .page-news .news-section--wide {
    margin-left: 0;
    margin-right: 0;
  }

  .page-news .news-section--wide .feature-card,
  .page-news .news-section--wide .season-pair {
    margin-left: 0;
    margin-right: 0;
  }

  .page-news .feature-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
  }

  .page-news .feature-card__media img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .page-news .feature-card__body {
    padding: 32px;
  }

  .page-news .timeline__card h3 {
    font-size: 19px;
  }

  .page-news .story-quote blockquote p {
    font-size: 17px;
  }
}
