/* Lightbox minimal styles */
.cf-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cf-lightbox-backdrop.is-open { display: flex; }

.cf-lightbox-figure {
  max-width: 95vw;
  max-height: 90vh;
  margin: 0;
  position: relative;
}

.cf-lightbox-img {
  max-width: 95vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.cf-lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}

.cf-lightbox-close,
.cf-lightbox-prev,
.cf-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cf-lightbox-close { top: 16px; right: 16px; transform: none; }
.cf-lightbox-prev { left: -56px; }
.cf-lightbox-next { right: -56px; }

@media (max-width: 768px) {
  .cf-lightbox-prev { left: 8px; }
  .cf-lightbox-next { right: 8px; }
}

