.sk-gallery {
  padding: 36px 40px;
  max-width: 1800px;
  margin: 0 auto;
}
.sk-gallery-item {
  display: block;
  overflow: hidden;
}
.sk-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
}
.sk-gallery-item.loaded img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .sk-gallery {
    padding: 20px;
  }
}

.sk-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.sk-lightbox.open {
  display: flex;
}
.sk-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.sk-lightbox-close,
.sk-lightbox-prev,
.sk-lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 20px;
}
.sk-lightbox-close {
  top: 0;
  right: 0;
}
.sk-lightbox-prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sk-lightbox-next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.sk-lightbox-open {
  overflow: hidden;
}
