@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
.block-slider {
  position: relative;
  padding-bottom: 2em;
  --swiper-pagination-color: var(--fg);
  --swiper-pagination-bullet-inactive-color: var(--fg);
  --swiper-navigation-size: 1em;
  --swiper-navigation-color: var(--fg);
  --swiper-navigation-color-hover: var(--fg);
}
.block-slider__grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 3/2;
  z-index: 9;
  top: 2em;
  pointer-events: none;
  border: 1px solid var(--fg-headline);
  display: none;
}
.swiper-wrapper {
  padding-bottom: 2em;
}
.swiper-slide {
  width: 100% !important;
}
.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 0.7em;
  display: none;
}
.swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  background: var(--fg);
  opacity: 0.4;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@keyframes progress-bar-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.swiper-zoom-container {
  text-align: inherit;
}
/*
.wp-block-slide {
    background: black;
    position: relative;
    display: block;
    width: 100%;
    padding-top: (2/3 * 100%);
    overflow: hidden;
    > figure {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        > img {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            aspect-ratio: (3/2);
            object-fit: contain;
            object-position: center center;
        }
    }
}
*/
