/* Keep the live customer-site browser preview compact and proportional.
   This is a UI preview, not a source-photo gallery, so it uses a stable 3:2 viewport. */
.browser-preview {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.browser-preview picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e7edf2;
}

.browser-preview picture img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center 48%;
  border-radius: 0 !important;
}

@media (max-width: 820px) {
  .live-card {
    align-items: start;
  }

  .browser-preview picture {
    aspect-ratio: 3 / 2;
  }
}
