

/* Sovrascrittura delle impostazioni problematiche di Magnific Popup */
img.mfp-img {
    width: auto !important;
    height: auto !important;
    max-height: 90vh !important;
    object-fit: contain !important;
  }

  .mfp-figure:after {
    top: 40px !important;
    bottom: 40px !important;
    left: 0 !important;
    right: 0 !important;
  }

  .mfp-content {
    max-width: 95% !important;
  }

  .mfp-image-holder .mfp-content {
    max-width: 95% !important;
  }

  /* Assicurati che questi selettori abbiano priorità */
  .mfp-wrap .mfp-container .mfp-content .mfp-figure img.mfp-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 85vh !important;
    object-fit: contain !important;
  }

  .property-image-container {
    width: 100%;
    height: 240px; /* Fixed height for the container */
    overflow: hidden;
    position: relative;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the key property */
    object-position: center;
}

