.story.section {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.story .section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.25rem, 4vw, 4rem);
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.hinge-figure {
  margin: 0;
  height: min(620px, 52vw);
  min-height: 500px;
  background: #1d1a18;
}

.story .story-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story .story-copy {
  max-width: 440px;
}

.story .story-copy p {
  margin: 0 0 1.25rem;
}

.story .story-copy p:first-child {
  font: 400 clamp(1.7rem, 2.7vw, 2.35rem)/1.28 var(--serif);
}

.story .story-copy p:last-child {
  margin-bottom: 0;
}

.story-carousel {
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.carousel-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.carousel-controls .eyebrow {
  margin: 0;
}

.carousel-button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 .25rem;
  margin-left: .9rem;
  background: transparent;
  color: var(--ink);
  font: 600 .68rem var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.story-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  padding: 0 0 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}

.story-card {
  flex: 0 0 clamp(240px, 29vw, 360px);
  margin: 0;
  scroll-snap-align: start;
}

.story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-card figcaption {
  margin-top: .7rem;
  color: var(--muted);
  font: italic .85rem var(--serif);
}

@media (max-width: 720px) {
  .story-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hinge-figure {
    height: 520px;
    min-height: 0;
  }

  .story .story-copy {
    max-width: none;
  }

  .carousel-controls {
    align-items: start;
    flex-direction: column;
    gap: .85rem;
  }

  .carousel-button {
    margin-left: 0;
    margin-right: .9rem;
  }

  .story-card {
    flex-basis: min(78vw, 340px);
  }

  .story-carousel {
    width: 100%;
    margin-top: 3.5rem;
  }
}
