.elementor-8938 .elementor-element.elementor-element-ce8819f{--display:flex;}.elementor-8938 .elementor-element.elementor-element-f36ddb9{--display:flex;}#elementor-popup-modal-8938 .dialog-widget-content{background-color:#181818;border-style:solid;border-color:var( --e-global-color-secondary );border-radius:10px 10px 10px 10px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-8938{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-8938 .dialog-message{width:800px;height:80vh;align-items:flex-start;}#elementor-popup-modal-8938 .dialog-close-button{display:flex;}/* Start custom CSS *//* Full gallery: 3 cols desktop, 2 cols mobile, square tiles, rounded corners */
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery {
  --hr-gap: 6px;               /* same gap as the other gallery */
  --hr-radius: 10px;           /* rounded corners on all images */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hr-gap);
}

.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1 / 1;         /* square tiles */
  border-radius: var(--hr-radius);
}

.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  will-change: transform;
  border-radius: inherit;      /* ensure the image matches the tile radius */
}

/* Subtle hover overlay + zoom */
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .25s ease;
  z-index: 1;
}
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item:hover::after,
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item:focus-within::after {
  background: rgba(0,0,0,.08);
}
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item:hover .homerunner-gallery-image,
.property-images-full-gallery .homerunner-property-gallery .homerunner-gallery-item:focus-within .homerunner-gallery-image {
  transform: scale(1.02);
  cursor: pointer;
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .property-images-full-gallery .homerunner-property-gallery .homerunner-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hr-gap);
  }
}/* End custom CSS */