

/* =========================================================
   GALERÍA
   ========================================================= */

   .property-gallery {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;

    gap: 5px;

    width: 100%;

    margin-bottom: 30px;

    overflow: hidden;

    border-radius: 12px;
}


/* =========================================================
   ELEMENTOS
   ========================================================= */

.gallery-item {
    position: relative;

    overflow: hidden;

    min-width: 0;
    min-height: 0;

}


/* =========================================================
   POSICIÓN DE LAS CINCO FOTOS
   ========================================================= */

.gallery-item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.gallery-item-3 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-item-4 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-item-5 {
    grid-column: 3;
    grid-row: 2;
}


/* =========================================================
   IMÁGENES
   ========================================================= */

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    cursor: pointer;

    transition: transform 0.25s ease;
}


.gallery-item img:hover {
    transform: scale(1.03);
}


/* =========================================================
   TABLET / MÓVIL
   ========================================================= */

   @media (max-width: 768px) {

    .property-gallery {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            300px
            180px
            180px;
    }


    .gallery-item-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }


    .gallery-item-2 {
        grid-column: 1;
        grid-row: 2;
    }


    .gallery-item-3 {
        grid-column: 2;
        grid-row: 2;
    }


    .gallery-item-4 {
        grid-column: 1;
        grid-row: 3;
    }


    .gallery-item-5 {
        grid-column: 2;
        grid-row: 3;
    }

}


/* =========================================================
   LIGHTBOX
   ========================================================= */

   .gallery-lightbox {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 9999;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.92);

    align-items: center;
    justify-content: center;
}


/* =========================================================
   CONTENEDOR DE LA IMAGEN
   ========================================================= */

.gallery-lightbox-content {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 75%;
    height: 90%;

    margin: auto;
}


/* =========================================================
   IMAGEN
   ========================================================= */

#gallery-lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 80vh;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   INFORMACIÓN
   ========================================================= */

.gallery-lightbox-info {
    margin-top: 15px;

    color: white;

    text-align: center;

    font-size: 1rem;
}


/* =========================================================
   CERRAR
   ========================================================= */

.gallery-close {
    position: absolute;

    top: 15px;
    right: 25px;

    z-index: 10001;

    width: 50px;
    height: 50px;

    padding: 0;

    border: none;

    background: transparent;

    color: white;

    font-size: 42px;

    line-height: 50px;

    cursor: pointer;
}


/* =========================================================
   FLECHAS
   ========================================================= */

.gallery-navigation {
    position: absolute;

    top: 50%;

    z-index: 10001;

    width: 60px;
    height: 80px;

    padding: 0;

    transform: translateY(-50%);

    border: none;

    background: transparent;

    color: white;

    font-size: 50px;

    line-height: 80px;

    text-align: center;

    cursor: pointer;
}


/* IZQUIERDA */

.gallery-prev {
    left: 20px;
}


/* DERECHA */

.gallery-next {
    right: 20px;
}


/* =========================================================
   HOVER
   ========================================================= */

.gallery-navigation:hover {
    background: rgba(255, 255, 255, 0.12);

    border-radius: 8px;
}


.gallery-close:hover {
    background: rgba(255, 255, 255, 0.12);

    border-radius: 8px;
}


@media (max-width: 768px) {

    .gallery-lightbox-content {
        width: 80%;
        height: 85%;
    }


    #gallery-lightbox-image {
        max-width: 100%;
        max-height: 75vh;
    }


    .gallery-navigation {
        width: 40px;
        height: 60px;

        font-size: 35px;

        line-height: 60px;
    }


    .gallery-prev {
        left: 5px;
    }


    .gallery-next {
        right: 5px;
    }


    .gallery-close {
        top: 10px;
        right: 10px;

        width: 45px;
        height: 45px;

        font-size: 36px;
    }

}