/* Customer stories section */

.stories {
  padding: 30px 48px 62px;
}

.stories-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.stories-header > div {
  position: relative;
  text-align: center;
}

.sparkles-middle {
  top: -4px;
  left: 50%;
  width: 160px;
  transform: translateX(-50%);
}

.cluster {
  width: 170px;
  justify-self: center;
  opacity: 0.84;
}

.stories h2 {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.92;
}

.stories-header p {
  margin: 8px 0 0;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  margin: 0;
  padding: 14px 14px 18px;
  background: linear-gradient(180deg, #fbf1df, #f0ddbd);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.story-card:nth-child(1) {
  transform: rotate(-1.8deg);
}

.story-card:nth-child(2) {
  transform: rotate(0.5deg);
}

.story-card:nth-child(3) {
  transform: rotate(-0.9deg);
}

.story-card:nth-child(4) {
  transform: rotate(1.1deg);
}

.story-card img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
}

.story-card figcaption {
  padding: 14px 10px 4px;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: 21px;
  line-height: 1.2;
}
