.b-story-cards {
  padding: 80px 0;
  background: var(--surface-2);
}
.b-story-cards__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b-story-cards__eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.b-story-cards__title {
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--text);
}
.b-story-cards__text {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}
.b-story-cards__media {
  position: relative;
}
.b-story-cards__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .b-story-cards {
    padding: 56px 0;
  }
  .b-story-cards__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .b-story-cards {
    padding: 44px 0;
  }
}
