 .slider {
    position: relative;
    width: 1300px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
  }

  .slide {
    min-width: 100%;
    height: 100%;
  }

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

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 8px 14px;
    cursor: pointer;
    user-select: none;
  }

  .arrow:hover {
    background: rgba(0,0,0,0.8);
  }

  .arrow.left { left: 0px; }
  .arrow.right { right: 0px; }

.dots,.dot{
visibility: hidden;
}

/*.dots{ 
    position: absolute; bottom: 10px; width: 100%; text-align: center; 
    } 
.dot { display: inline-block; width: 30px; height: 30px; margin: 0 6px; border-radius: 50%; border: 1px solid yellow; /* hohl + rot *//*background: transparent; /* durchsichtig *//*/* cursor: pointer; */
/*} */
  /*  .dot.active { 
        background: yellow; /* aktives Bild = gelb gefüllt */ /*border-/*color: yellow; /* Rand auch gelb */ /*}

