:root {
  --block-padding: 20px;
  --container-width: 1450px;
  --small-container-width: calc(1170px + var(--block-padding) * 2 );
}
@media (min-width: 768px) {
  :root {
    --block-padding: clamp(60px, 6.6667px + 6.9444vw, 140px);
  }
}

section.large-image-carousel {
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  section.large-image-carousel .container {
    padding: var(--block-padding);
  }
}
section.large-image-carousel .container .swiper-wrapper {
  cursor: url("assets/drag.svg") 16 16, pointer;
}
section.large-image-carousel .container .swiper-wrapper .swiper-slide {
  max-height: 800px;
  height: auto;
  padding: 0 calc(var(--block-padding) / 2);
}
section.large-image-carousel .container .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.large-image-carousel .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: opacity 0.2s ease;
  padding: var(--block-padding);
}
@media (min-width: 1400px) {
  section.large-image-carousel .lightbox {
    padding: calc(var(--block-padding) / 2) var(--block-padding);
  }
}
section.large-image-carousel .lightbox.show {
  opacity: 1;
  pointer-events: auto;
}
section.large-image-carousel .lightbox > .close {
  position: absolute;
  border-radius: 40px;
  background: #dedede;
  z-index: 9;
  cursor: pointer;
  top: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
}
@media (min-width: 1024px) {
  section.large-image-carousel .lightbox > .close {
    top: 50px;
    right: 50px;
    height: 70px;
    width: 70px;
  }
}
section.large-image-carousel .lightbox > .close > span {
  height: 2px;
  background: #21382D;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
}
section.large-image-carousel .lightbox > .close > span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 1024px) {
  section.large-image-carousel .lightbox > .close > span {
    width: 30px;
  }
}
section.large-image-carousel .lightbox .lightbox-swiper {
  height: 100%;
}
section.large-image-carousel .lightbox .lightbox-swiper .swiper-wrapper {
  height: 100%;
  cursor: url("assets/drag.svg") 16 16, pointer;
}
section.large-image-carousel .lightbox .lightbox-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
section.large-image-carousel .lightbox .lightbox-swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}