.story {
  width: min(100%, var(--page-width));
  max-width: var(--page-width);
}

.story-meme {
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 20px;
  background: var(--surface);
}

.story-meme img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (min-width: 721px) {
  .story {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: clamp(58px, 7vw, 112px);
  }

  .story-content {
    min-width: 0;
  }

  .story .story-content .eyebrow {
    margin: 0 0 clamp(28px, 3vw, 42px);
  }

  .story-content h2 span {
    display: block;
  }

  .story-copy {
    max-width: 620px;
    margin: clamp(30px, 3.4vw, 48px) 0 0;
  }

  .story-meme {
    justify-self: end;
    align-self: center;
  }
}

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

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

  .story .story-content .eyebrow {
    margin: 0 0 -10px;
  }

  .story-content h2 span {
    display: inline;
  }

  .story-copy {
    margin: 0;
  }

  .story-meme {
    width: 100%;
    max-width: 560px;
    justify-self: stretch;
  }
}
