/*
Theme Name:		 gpc-gp
Theme URI:		 http://childtheme-generator.com/
Description:	 gpc-gp is a child theme of GeneratePress, created by ChildTheme-Generator.com
Author:			 gpc
Author URI:		 http://childtheme-generator.com/
Template:		 generatepress
Version:		 1.0.0
Text Domain:	 gpc-gp
*/


/*
    Add your custom styles here
*/

.wp-block-image {
    margin-bottom: 16px;
}

/* img[class^="gb-media-"] {
    display: block;
} */

.wp-block-list.is-style-list-plain {
    margin-left: 0;
    list-style: none;
}

/*=============================================
=            Header            =
=============================================*/
.gb-site-header .gb-menu-item:is(:hover,:focus-within,.current-menu-item,.current-menu-item:hover,.current-menu-item:focus-within) {
    text-underline-offset: 5px;
}

/*=============================================
=            Home            =
=============================================*/
.home-gallery {
    --g-gap: 20px;
    --g-cols: 2;
    display: grid !important;
    grid-template-columns: repeat(var(--g-cols), 1fr) !important;
    gap: var(--g-gap) !important;
}

.home-gallery.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100%;
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

@media (min-width: 768px) {
    .home-gallery {
        --g-cols: 3;
    }
}

@media (min-width: 1100px) {
    .home-gallery {
        --g-cols: 6;
    }
}