/**
* Block Name: bild_slideshow
*/

section.bild_slideshow {
  overflow: hidden;
}

section.bild_slideshow .img_wrapper {
  display: block;
  height: auto;
  position: relative;
  margin-bottom: 25px;
  text-decoration: none;
  height: auto;
  max-height: 700px;
  color: var(--schwarz);
  border-radius: var(--border-radius);
  transition: all 300ms ease-in;
}

section.bild_slideshow .img_wrapper:not(.swiper-slide-active) {
  opacity: 0.2;
}

section.bild_slideshow .img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
}

section.bild_slideshow .img_wrapper .caption {
  position: relative;
  transform: translateY(-44px);
  border-radius: 0px 0px 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(27px);
  padding: 10px 20px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  section.bild_slideshow .img_wrapper {
    max-height: 350px;
  }
}
