/**
 *
 * @Copyright 2025 VOID SOFTWARE, S.A.
 *
 */

.property-gallery {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.property-gallery__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery__item img {
    max-width: 100%;
    max-height: 50rem;
    object-fit: contain;
    border-radius: 1.6rem;
}

.property-gallery__item__img-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: red;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 26rem;
    border-radius: 1.6rem;
    background-color: var(--color-neutral-100);
}

.property-gallery__item__img-fallback svg {
    width: 8rem;
    height: 8rem;
}

@media screen and (max-width: 1130px) {
    .property-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}
