.slideshow-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
}

.slideshow-container {
  overflow: hidden;
  border-radius: 8px;
  background: transparent; /* kein grauer Hintergrund */
  position: relative;
  background: transparent !important;
  border: none !important;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px 10px 0 10px;
  text-align: center;
}

.slide img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.slide h2 {
  margin-bottom: 10px;
  color: #333;
}

.slide p {
  font-size: 1.1em;
  color: #555;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(51,51,51,0.7);
  border-radius: 50%;
  user-select: none;
  line-height: 40px;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 20;
}

.nav-btn:hover {
  background-color: rgba(51,51,51,0.9);
}

.prev {
  left: 5px;  /* Pfeil links außerhalb */
}

.next {
  right: 5px; /* Pfeil rechts außerhalb */
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 0px;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

.slideshow-wrapper.special-slide {
  margin-top: -30px; /* Beispielwert, je nach Bedarf anpassen */
}