.story {
  max-width: 72rem;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  font-family: system-ui, sans-serif;
  color: #17181a;
  background: #ffffff;
}

.story__frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background-color: #f7f6f4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.story__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.story__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 40rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.story__eyebrow {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.8rem;
  color: rgba(23, 24, 26, 0.7);
}

.story__quote {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.story__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.story__person img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 50%;
}

.story__name {
  font-size: 0.95rem;
  font-weight: 500;
}

.story__role {
  font-size: 0.82rem;
  color: rgba(23, 24, 26, 0.55);
}

.story__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 0.5rem;
}

.story__stat-value {
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Inline pixel chevron, same glyph as the CTA buttons */
.story__stat-arrow {
  --px: 2px;
  position: relative;
  display: inline-block;
  width: calc(4 * var(--px));
  height: calc(7 * var(--px));
  margin: 0 0.15rem;
}

.story__stat-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--px);
  height: var(--px);
  background: currentColor;
  box-shadow:
    var(--px) var(--px),
    calc(2 * var(--px)) calc(2 * var(--px)),
    calc(3 * var(--px)) calc(3 * var(--px)),
    calc(2 * var(--px)) calc(4 * var(--px)),
    var(--px) calc(5 * var(--px)),
    0 calc(6 * var(--px));
}

.story__stat-label {
  font-size: 0.8rem;
  color: rgba(23, 24, 26, 0.55);
}

@media (max-width: 560px) {
  .story__stats {
    gap: 1.25rem 2rem;
  }
}
