.story-hero {
  padding: 95px 0 80px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(243, 154, 0, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #fffdf7 0%, #f8f4e9 100%);
}

.story-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.story-lead {
  max-width: 780px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: var(--red);
}

.story-content-section {
  background: var(--white);
}

.story-content {
  display: grid;
  gap: 42px;
}

.story-content section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.story-content h2 {
  margin-bottom: 16px;
}

.story-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.story-quote {
  margin: 0;
  padding: 34px;
  border-left: 5px solid var(--red);
  border-radius: 0 22px 22px 0;
  background: var(--sage);
}

.story-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.story-quote footer {
  margin-top: 16px;
  color: var(--forest);
  font-weight: 700;
}

.story-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.story-meta-card,
.story-action-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.story-meta-card h3,
.story-action-card h3 {
  margin-bottom: 22px;
}

.story-meta-card > div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.story-meta-card strong,
.story-meta-card span {
  display: block;
}

.story-meta-card span {
  margin-top: 5px;
  color: var(--ink-soft);
}

.story-action-card p {
  color: var(--ink-soft);
}

@media (max-width: 991.98px) {
  .story-sidebar {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .story-hero {
    padding: 65px 0 55px;
  }

  .story-meta-card,
  .story-action-card,
  .story-quote {
    padding: 24px;
  }
}