/*
 * Layout für das Karussell im Qualitätswohnbau‑Theme.
 * Dieses CSS steuert das Erscheinungsbild der Karussells, inklusive
 * Schaltflächen und Übergänge. Passen Sie Farben und Abstände an Ihre
 * Bedürfnisse an. Die Effekte lassen sich über die Klasse .active sowie die
 * CSS‑Transitions steuern.
 */

.qwb-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.qwb-carousel .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.qwb-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.qwb-carousel .carousel-slide.active {
  opacity: 1;
}

.qwb-carousel .carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.qwb-carousel .carousel-prev,
.qwb-carousel .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
  font-size: 1rem;
}

.qwb-carousel .carousel-prev {
  left: 10px;
}

.qwb-carousel .carousel-next {
  right: 10px;
}