.story-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: linear-gradient(180deg, #fffdf8 0%, #f4fbff 100%);
  border-block: 1px solid var(--line);
}

.story-teaser p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.82;
  text-wrap: pretty;
}

.story-teaser .secondary {
  margin-top: 24px;
}

.story-teaser-image {
  overflow: hidden;
  border: 10px solid #875725;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .story-teaser {
    grid-template-columns: 1fr;
  }

  .story-teaser-image {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .story-teaser-image {
    border-width: 6px;
    border-radius: 12px;
  }
}
