/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

.wp-block-gallery .blocks-gallery-grid {
    display: grid !important;
    list-style-type: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    justify-items: center;
}

.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
    display: block !important;
}

.wp-block-gallery:has(+ .load-more-gallery) {
    display: none !important;
}

.load-more-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    justify-items: center;
    gap: 12px;
}
.load-more-gallery__button {
    margin-top: 16px;
    background: #8b0000;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-family: "Arvo", sans-serif;
    font-weight: 600;
}
