
.usoe-slider{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.usoe-slider__viewport{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.usoe-slider__track-wrap{
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  box-sizing: border-box;
}

.usoe-slider__track{
  display: flex;
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

/* PRO SLIDE = 1 BILD */
.usoe-slide{
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  background: #0d1d4a;
  padding: 10px;

  height: 600px;      /* Desktop-Höhe */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OHNE BESCHNEIDUNG */
.usoe-slide img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;      /* <<< KEIN CROP */
  object-position: center;
  background: #0d1d4a;      /* gleiche Farbe wie Slide */
}

/* Buttons */
.usoe-slider__nav{
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #1a1a1a;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  flex: 0 0 auto;
}

.usoe-slider__nav:hover{
  background: #ffffff;
  transform: scale(1.04);
}

.usoe-slider__nav:focus{
  outline: 2px solid #ffff66;
  outline-offset: 2px;
}

.usoe-slider__nav:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Dots */
.usoe-slider__dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 14px;
}

.usoe-slider__dot{
  width: 12px;
  height: 12px;
  border-radius:50%;
  border:0;
  background: rgba(255,255,255,0.45);
  cursor:pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.usoe-slider__dot.is-active{
  background:#fff;
  transform: scale(1.15);
}

.usoe-slider__dot:focus{
  outline: 2px solid #ffff66;
  outline-offset: 2px;
}

/* Tablet */
@media (max-width: 1000px){
  .usoe-slide{
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 760px){
  .usoe-slider{
    padding: 0 10px;
  }

  .usoe-slider__viewport{
    gap: 6px;
  }

  .usoe-slide{
    height: 280px;
    padding: 8px;
  }

  .usoe-slider__nav{
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}