/* Build 006B.5 — Home Map Image Isolation
   Prevent the legacy sidebar rule `aside img { max-width:205px }`
   from shrinking map and preview images inside drawer/viewer asides. */

.living-find-drawer .living-find-map-canvas > img,
.living-find-drawer .living-find-photo-panel > img,
.home-map-viewer .home-map-viewer-stage > img{
  width:100%;
  max-width:none;
}

/* The full viewer image must always occupy the same stage used by markers. */
.home-map-viewer .home-map-viewer-stage > img{
  height:100%;
  object-fit:fill;
}

/* The small Find preview keeps its natural aspect ratio without sidebar constraints. */
.living-find-drawer .living-find-map-canvas > img{
  display:block;
  height:auto;
  object-fit:contain;
}

/* Uploaded location photos may also use the full drawer width. */
.living-find-drawer .living-find-photo-panel > img{
  height:auto;
  object-fit:contain;
}
