/* properties.php photographic replacement patch — 2026-09-18 */
.property-photo-panel{
  position:relative;
  min-height:380px;
  aspect-ratio:4/3;
  background-color:#0b2b2d;
  background-image:var(--property-photo-desktop);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 52px rgba(8,36,37,.18);
}
.property-photo-panel::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(5,31,32,.02),rgba(5,31,32,.14));
}
#condominiums .property-photo-panel{background-position:center 50%}
#house-lot .property-photo-panel{background-position:center 48%}
#investment .property-photo-panel{background-position:center 50%}
@media(max-width:720px){
  .property-photo-panel{
    min-height:340px;
    aspect-ratio:4/3;
    background-image:var(--property-photo-mobile,var(--property-photo-desktop));
  }
}
