/* escort-lightbox.css */

.escort-lightbox__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  background: #000;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
}

.escort-lightbox__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
}

.escort-lightbox__media {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}