.b-quote-banner {
  padding: 56px 0;
  background: var(--bg);
}
.b-quote-banner__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 56px;
  text-align: center;
}
.b-quote-banner__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.b-quote-banner__frame path {
  fill: none;
  stroke: var(--lavender);
  stroke-width: 1.4;
  opacity: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.b-quote-banner__text {
  position: relative;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.35;
  color: var(--text);
}
@media (max-width: 768px) {
  .b-quote-banner {
    padding: 40px 0;
  }
  .b-quote-banner__inner {
    padding: 34px 36px;
  }
}
@media (max-width: 480px) {
  .b-quote-banner {
    padding: 32px 0;
  }
  .b-quote-banner__inner {
    padding: 26px 22px;
  }
}
