/* Klantenverhalen — carrousel tussen hero en kennis */
.home-verhalen {
  margin: 0 0 40px;
  padding: 28px clamp(1.25rem, 4vw, 2.5rem) 28px;
  background: linear-gradient(160deg, #eef5fb 0%, #fff 55%, #f7fafc 100%);
  border: 1px solid #e7ecf1;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(53, 152, 220, 0.08);
}

.home-verhalen__header {
  text-align: center;
  margin: 0 auto 1.75rem;
}

.home-verhalen__title {
  font-size: 26px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .home-verhalen__title {
    font-size: 28px;
  }
}

.home-verhalen__carousel {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.home-verhalen__viewport {
  position: relative;
  min-height: 7.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .home-verhalen__viewport {
    min-height: 6.5rem;
  }
}

.home-verhalen__slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-verhalen__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.home-verhalen__quote {
  margin: 0 0 0.65rem;
  padding: 0;
  border: 0;
  font-size: 1.3rem;
  line-height: 1.55;
  color: #2c3e50;
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 768px) {
  .home-verhalen__quote {
    font-size: 1.45rem;
    line-height: 1.5;
  }
}

.home-verhalen__quote::before {
  content: "“";
  color: #3598dc;
  font-style: normal;
  font-weight: 600;
  margin-right: 0.1em;
}

.home-verhalen__quote::after {
  content: "”";
  color: #3598dc;
  font-style: normal;
  font-weight: 600;
  margin-left: 0.05em;
}

.home-verhalen__source {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #3598dc;
  letter-spacing: 0.01em;
}

.home-verhalen__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.home-verhalen__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c5d6e6;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-verhalen__dot:hover,
.home-verhalen__dot:focus-visible {
  background: #7eb6e0;
  outline: none;
}

.home-verhalen__dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(53, 152, 220, 0.35);
}

.home-verhalen__dot.is-active {
  background: #3598dc;
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .home-verhalen__slide {
    transition: none;
  }
}
