/* Gallery Mosaic module */
.gallery_mosaic_module{
  padding: 48px 24px;
}
.gallery_mosaic_module__heading{
  text-align: center;
  margin-bottom: 24px;
}
.gallery_mosaic_slider img{
  width: auto;
  height: auto;
  max-height: 320px;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.gallery_mosaic_slide{
  display: block;
}

.gallery_mosaic_slider .splide__slide{
  width: auto;
  min-width: 220px;
}

.gallery_mosaic_slider .splide__arrow{
  background: var(--ib-primary);;
  opacity: .85;
  transition: opacity .2s ease;
}
.gallery_mosaic_slider .splide__arrow svg{
  fill: #fff;
}
.gallery_mosaic_slider .splide__arrow{
  opacity: 0;
  pointer-events: none;
}
.gallery_mosaic_slider:hover .splide__arrow{
  opacity: .85;
  pointer-events: auto;
}

.gallery_mosaic_slider .splide__pagination__page.is-active{
  background: var(--ib-primary);
}

.gallery-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-lightbox__inner{
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-lightbox__inner img{
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

body.lightbox-open{
  overflow: hidden;
}
