.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.layouter-carousel__prev,
.layouter-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.layouter-carousel__prev {
    left: 10px;
}

.layouter-carousel__next {
    right: 10px;
}

/* Optional: Hover Effekt */
.layouter-carousel__prev:hover,
.layouter-carousel__next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Dot-Navigation */
.layouter-carousel__dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.layouter-carousel__dots button {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: grey;
    border: none;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.layouter-carousel__dots button.is-selected {
    opacity: 1;}

@media (min-width: 768px) {
  .embla {
    display: contents;
  }

  .embla__container {
    display: contents;
  }

  .embla__slide {
    flex: none;
  }

  .layouter-carousel__prev,
  .layouter-carousel__next,
  .layouter-carousel__dots {
    display: none;
  }
}
