.quote-section {
  --quote-primary: #22313f;
  --quote-muted: #d8e1e9;
  --quote-active: #22313f;
  background: var(--background-medium, #f8fafc);
  height: 393px;
  overflow: hidden;
  padding: var(--xxl, 96px) 0;
  position: relative;
}

.quote-section__inner {
  margin: 0 auto;
  max-width: 1290px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.quote-section__text {
  color: var(--quote-active);
  font-family: var(--headings-h2-font-family, 'JosefinSans-Regular', sans-serif);
  font-size: var(--headings-h2-font-size, 61.04px);
  font-weight: var(--headings-h2-font-weight, 400);
  line-height: var(--headings-h2-line-height, 110%);
  margin: 0;
  text-align: center;
  width: 100%;
}

.quote-section__word {
  will-change: color;
}

.quote-section__shape {
  background:
    radial-gradient(circle at 22% 42%, rgba(95, 168, 211, 0.24), rgba(95, 168, 211, 0) 56%),
    radial-gradient(circle at 10% 62%, rgba(95, 168, 211, 0.18), rgba(95, 168, 211, 0) 52%);
  height: 1469px;
  left: -434px;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  top: -259px;
  transform: rotate(9.082deg);
  transform-origin: 0 0;
  width: 1141px;
  z-index: 1;
}

@media (max-width: 768px) {
  .quote-section {
    height: auto;
    padding: 72px 16px;
  }

  .quote-section__shape {
    height: 620px;
    left: -330px;
    top: -190px;
    width: 760px;
  }

  .quote-section__inner {
    padding: 0;
  }

  .quote-section__text {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
