/* Standard: kleine Screens */

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Mittlere Screens */

@media (min-width: 768px) {
  .swiper-slide img {
    height: 350px;
  }
}

/* Große Screens */

@media (min-width: 1200px) {
  .swiper-slide img {
    height: 500px;
  }
}

