.story {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 3vw, 2.5rem);
}

.story__inner {
  max-width: 72rem;
  width: 100%;
  margin-inline: auto;
}

.story__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #000;
}

.story__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.story__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.22) 34%,
    transparent 58%
  );
  pointer-events: none;
}

.story__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 34rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.story__quote {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.story__meta {
  margin-top: 1.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
}

.story__meta strong {
  display: block;
  font-weight: 500;
  color: var(--accent);
}

@media (max-width: 48rem) {
  .story__frame {
    aspect-ratio: 3 / 4;
  }

  .story__img {
    object-position: 78% center;
  }

  .story__fade {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.45) 42%,
      transparent 70%
    );
  }

  .story__copy {
    max-width: none;
  }
}
