.image-gallery-block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.listing-card-with-name-location{
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.listing-card-with-name-location .image-block{
    overflow: hidden;
    aspect-ratio:827/553;
    position: relative;
}
.listing-card-with-name-location .image-block .overlay{
  position: absolute;
  background: #0006;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .3s linear;
}
.listing-card-with-name-location .image-block:hover .overlay{
    opacity: 1;
}
.listing-card-with-name-location .image-block img{
    transform: scale(1);
    transition: all .3s linear;
    width: 100%;
}
.listing-card-with-name-location .image-block:hover img{
    transform: scale(1.15);
}

.listing-card-with-name-location a,.listing-card-with-name-location a:hover,.listing-card-with-name-location a:focus,.listing-card-with-name-location a:focus-visible,.listing-card-with-name-location a:active{
    text-decoration: none;
}

