/* Minimal lightbox styles for project photos */
.pm-lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.pm-lightbox-overlay.is-open { display: flex; }

.pm-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.pm-lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.pm-lightbox-caption {
  position: absolute;
  left: 0; right: 0; bottom: -34px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0.9;
}

.pm-lightbox-close,
.pm-lightbox-prev,
.pm-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0,0,0,0.45);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pm-lightbox-prev { left: -56px; }
.pm-lightbox-next { right: -56px; }
.pm-lightbox-close {
  top: -56px;
  right: 0;
  transform: none;
}

@media (max-width: 640px) {
  .pm-lightbox-prev { left: 8px; }
  .pm-lightbox-next { right: 8px; }
  .pm-lightbox-close { top: 8px; right: 8px; }
  .pm-lightbox-caption { bottom: -24px; font-size: 12px; }
}

