/* ==========================================================================
   Property Preview — Video block + gallery placeholder
   The photo grid moved to _media_mosaic.css / _media_skins.css (the mosaic).
   ========================================================================== */

.property-preview-media-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background-color: #f8fafc;
}

.property-preview-media-item--video {
  min-height: 300px;
}

.property-preview-media-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.1rem;
  /* Prevent video controls from swallowing the click-to-open interaction. */
  pointer-events: none;
}

@media (max-width: 768px) {
  .property-preview-media-item--video {
    min-height: 250px;
  }
}

.property-preview-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 240px;
  border-radius: 1.1rem;
  border: 1px dashed var(--gf-color-neutral-200);
  background-color: #f8fafc;
}
