.news-page {
  background: #edf0f3;
  color: #10161f;
}

.news-page .site-header {
  background: rgba(11, 12, 14, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-page-main {
  background: #edf0f3;
}

.story-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-inline: clamp(12px, 2.4vw, 28px);
}

.story-hero {
  background:
    radial-gradient(940px 420px at 2% -10%, rgba(211, 249, 77, 0.16), transparent 64%),
    radial-gradient(760px 340px at 100% 8%, rgba(116, 143, 253, 0.14), transparent 66%),
    linear-gradient(180deg, #1b4552 0%, #123444 100%);
  padding: clamp(80px, 9vw, 120px) 0 clamp(34px, 5vw, 72px);
}

.story-back-link {
  display: inline-flex;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #deebff;
  text-decoration: none;
}

.story-back-link:hover {
  color: #ffffff;
}

.story-hero-grid {
  display: grid;
  gap: clamp(18px, 3vw, 40px);
}

.story-hero-copy {
  min-width: 0;
}

.story-kicker {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(246, 209, 255, 0.48);
  background: rgba(232, 192, 248, 0.12);
  color: #f6cbff;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-title {
  margin: 18px 0 16px;
  font-size: clamp(1.95rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 30ch;
}

.story-meta {
  margin: 0;
  color: #deecf8;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hero-media {
  display: none;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  max-height: 560px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 30px rgba(2, 8, 16, 0.36);
}

.story-hero-media.is-visible {
  display: block;
}

.story-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-content {
  padding: clamp(20px, 3vw, 38px) 0 clamp(44px, 6vw, 80px);
}

.story-article {
  background: #ffffff;
  color: #10161f;
  border-radius: 14px;
  padding: clamp(20px, 4.5vw, 56px);
  box-shadow: 0 14px 28px rgba(16, 22, 31, 0.08);
}

.story-article > * {
  width: min(920px, 100%);
}

.story-article > *:last-child {
  margin-bottom: 0;
}

.story-article h1,
.story-article h2,
.story-article h3,
.story-article h4,
.story-article h5,
.story-article h6 {
  color: #10161f;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-article h1 {
  margin-top: 0;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  max-width: none;
}

.story-article h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
}

.story-article h3 {
  font-size: clamp(1.14rem, 2.5vw, 1.5rem);
}

.story-article p,
.story-article li {
  color: #1f2a37;
  line-height: 1.72;
  font-size: 1rem;
}

.story-article ul,
.story-article ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.story-article blockquote {
  margin: 24px 0;
  padding: 12px 16px;
  border-left: 4px solid #9eb25d;
  background: #f5f8ee;
}

.story-article blockquote p {
  margin: 0;
}

.story-article hr {
  border: 0;
  border-top: 1px solid #dbe3ec;
  margin: 30px 0;
}

.story-article a {
  color: #1c4f8d;
  text-decoration: underline;
}

.story-article code {
  background: #eef2f7;
  color: #263445;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 0.9em;
}

@media (min-width: 860px) {
  .story-hero-grid.has-media {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.92fr);
    align-items: end;
  }

  .story-hero-copy {
    padding-bottom: clamp(20px, 4vw, 66px);
  }

  .story-hero-media {
    height: min(56vw, 520px);
  }
}

@media (max-width: 620px) {
  .story-article {
    border-radius: 10px;
    padding: 18px 16px 24px;
  }

  .story-article p,
  .story-article li {
    font-size: 0.98rem;
  }
}
