.block--gallery {
  --card-count: 4;
  --swiper-transition-timing-function: linear;
}
.block--gallery .gallery {
  position: relative;
}
.block--gallery .gallery .gallery-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.block--gallery .swiper {
  width: 100%;
}
.block--gallery .swiper-wrapper[data-swiper-autoplay=true][data-swiper-delay="0"] {
  transition-timing-function: linear;
}
.block--gallery.--stretch-width {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
}
.block--gallery.--stretch-width .swiper-button-next, .block--gallery.--stretch-width .swiper-button-prev {
  transform: translateX(0);
}

.editor-styles-wrapper .block--gallery {
  --card-width: 100%;
}
@media (min-width: 768px) {
  .editor-styles-wrapper .block--gallery {
    --card-width: calc(100% / max(1, (var(--card-count, 4) - 2))) ;
  }
}
@media (min-width: 992px) {
  .editor-styles-wrapper .block--gallery {
    --card-width: calc(100% / (var(--card-count, 4) - 1)) ;
  }
}
@media (min-width: 1200px) {
  .editor-styles-wrapper .block--gallery {
    --card-width: calc(100% / var(--card-count, 4));
  }
}
.editor-styles-wrapper .block--gallery.--stretch-width {
  width: 100%;
  margin-left: initial;
}
.editor-styles-wrapper .block--gallery .gallery-inner > .acf-innerblocks-container, .editor-styles-wrapper .block--gallery .gallery-inner .swiper-wrapper > .acf-innerblocks-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.editor-styles-wrapper .block--gallery .gallery-inner > .acf-innerblocks-container > .wp-block-wmx-gallery-card, .editor-styles-wrapper .block--gallery .gallery-inner .swiper-wrapper > .acf-innerblocks-container > .wp-block-wmx-gallery-card {
  flex: 1 1 var(--card-width, 100%);
  max-width: var(--card-width, 100%);
  margin-bottom: 1.5rem;
  padding: calc(var(--bs-gutter-x) / 2);
  background-clip: content-box;
}
.editor-styles-wrapper .block--gallery .gallery-inner > .block--gallery-card {
  flex: 1 1 var(--card-width, 100%);
  max-width: var(--card-width, 100%);
  margin-bottom: 1.5rem;
}
