/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.gallery {
    display: grid !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 0 !important;
}

.gallery.gallery-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.gallery.gallery-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.gallery.gallery-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.gallery .gallery-item {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gallery .gallery-icon {
    width: 100% !important;
    height: 260px !important;
    overflow: hidden;
    /* border-radius: 14px; */
    background: #f3f0ea;
}

.gallery .gallery-icon a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.gallery .gallery-icon img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    transition: transform 0.35s ease;
}

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

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .gallery .gallery-icon {
        height: 260px !important;
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr !important;
    }

    .gallery .gallery-icon {
        height: 300px !important;
    }
}



