/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 8 May 2026, 4:23 pm
*/

/* MOBILE FIX */
@media (max-width:767px){

    /* RESET JUSTIFIED */
    .foogallery.fg-justified{

        display:flex !important;
        flex-wrap:wrap !important;

        height:auto !important;
    }

    /* ITEM */
    .foogallery.fg-justified .fg-item{

        position:relative !important;
        top:auto !important;
        left:auto !important;

        width:calc(50% - 5px) !important;
        height:200px !important;

        margin:0 !important;
    }

    /* THUMB */
    .foogallery.fg-justified .fg-thumb{

        width:100% !important;
        height:100% !important;
    }

    /* IMAGE */
    .foogallery.fg-justified img{

        width:100% !important;
        height:100% !important;

        object-fit:cover;
        display:block;
    }
}
