/**
* Block Name: slideshow
*/

section.slideshow {
    position: relative;
    overflow: hidden;
  }
  
  section.slideshow .awy_swiper_button_next,
  section.slideshow .awy_swiper_button_prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    margin-top: -22px;
  }
  
  section.slideshow .awy_swiper_button_next {
    right: 30px;
  }
  
  section.slideshow .awy_swiper_button_prev {
    left: 30px;
  }
  
  section.slideshow .swiper-slide img.bg_static_cover {
    height: 250px;
    border-radius: var(--radius-small);
    display: block;
    width: 100%;
    object-fit: cover;
  }
  

  section.slideshow .slideshow__controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
  }
  
  section.slideshow .slideshow__controls > div {
    pointer-events: auto;
  }
  
  section.slideshow .slideshow__play-pause {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
  
  section.slideshow .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  section.slideshow .btn:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
  }
  
  @media (max-width: 767px) {
    section.slideshow .swiper-container {
      padding-left: 15px;
      padding-right: 15px;
    }
    section.slideshow .awy_swiper_button_next {
      right: 5px;
    }
    section.slideshow .awy_swiper_button_prev {
      left: 5px;
    }
    section.slideshow .slideshow__play-pause {
      bottom: 10px;
      right: 10px;
    }
  }
  
  @media (min-width: 768px) {
    section.slideshow .swiper-slide img.bg_static_cover {
      height: 300px;
    }
  }
  
  @media (min-width: 992px) {
    section.slideshow .swiper-slide img.bg_static_cover {
      height: 350px;
    }
  }
  
  @media (min-width: 1200px) {
    section.slideshow .swiper-slide img.bg_static_cover {
      height: 500px;
    }
  }