.quote-section {
  position: relative;
  min-height: 600px;
  padding: clamp(82px, 9vw, 122px) clamp(82px, 10vw, 150px);
  overflow: hidden;
  background: #e5f4fc;
  text-align: center;
}

.quote-section:focus-visible {
  outline: 3px solid #0086d4;
  outline-offset: -3px;
}

.quote-section > .section-kicker {
  margin-bottom: 30px;
}

.quote-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.quote-slide {
  margin: 0;
  animation: quote-in .36s ease both;
}

.quote-slide[hidden] {
  display: none;
}

.quote-slide img {
  width: 124px;
  height: 124px;
  margin: 0 auto 30px;
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 88, 145, .18);
  object-fit: cover;
}

.quote-section .quote-slide blockquote {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #102f46;
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.quote-slide figcaption {
  display: grid;
  gap: 2px;
  color: #587687;
  font-size: 14px;
}

.quote-slide figcaption strong {
  color: #102f46;
  font-size: 16px;
}

.quote-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 112px;
  padding: 0 0 10px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: #0069ad;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 92px;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .2s, transform .2s;
}

.quote-nav:hover {
  background: rgba(255, 255, 255, .65);
  transform: translateY(-50%) scale(1.04);
}

.quote-nav:focus-visible {
  outline: 3px solid #0086d4;
  outline-offset: 3px;
}

.quote-nav--prev {
  left: clamp(10px, 3vw, 48px);
}

.quote-nav--next {
  right: clamp(10px, 3vw, 48px);
}

.quote-status {
  margin: 28px 0 0;
  color: #7695a7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

@keyframes quote-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .quote-section {
    min-height: 560px;
    padding: 74px 52px;
  }

  .quote-slide img {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }

  .quote-section .quote-slide blockquote {
    font-size: clamp(19px, 4.8vw, 24px);
  }

  .quote-nav {
    width: 44px;
    height: 80px;
    border-radius: 16px;
    font-size: 64px;
  }

  .quote-nav--prev { left: 4px; }
  .quote-nav--next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-slide { animation: none; }
  .quote-nav { transition: none; }
}
