/* 
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 */

/* Custom Gallery Grid */
.custom-gallery-widget {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom */
    grid-template-rows: repeat(2, auto); /* 2 baris */
    gap: 10px;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.custom-gallery-widget .gallery-item {
    width: 100%;
    text-align: center;
}

.custom-gallery-widget .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Load More Button */
#load-more-gallery {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
	font-family: Prompt;
    font-size: 14px;
	font-weight: 600;
    cursor: pointer;
    border: none;
    background-color: #000000;
    color: #FF6300;
    border-radius: 0px;
	text-transform: uppercase;
	padding-left: 30px;
	padding-right:30px;

}

#load-more-gallery:hover {
    background-color: #000000;
}

/* Responsiveness */
@media (max-width: 600px) {
    .custom-gallery-widget {
/*         grid-template-columns: repeat(2, 1fr); - 2 kolom di layar kecil */
        grid-template-columns: repeat(1, 1fr); /* 1 kolom di layar kecil */
		
        grid-template-rows: auto;
    }
}



