.works-slider {
  overflow: hidden;
}
.works-slider .swiper-slide {
  width: 200px;
}
.works-slider .video {
  display: none;
}
.thumb-wrapper {
  width: 200px;
  height: 120px;
  overflow: hidden;
}

/* Lightbox overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-swiper {
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}
.lightbox-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw !important;
}
.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.lightbox-swiper .swiper-slide img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #5f5f5f;
  text-align: center;
}

/* Arrows — black circle, white icon */
.lightbox-close,
.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--swiper-navigation-color);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  svg {
    width: 12px;
    height: 12px;
  }
  transition: background-color 400ms linear;
  &:hover {
    background-color: rgba(0, 0, 0, 0.9);
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
}
