/* Gallery page styles */

.gallery-page-section {
    padding-top: 30px;
}

.gallery-page-header {
    margin-bottom: 34px;
    text-align: center;
    display: grid;
    justify-items: center;
}

.gallery-page-title {
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--accent-red);
    font-family: "Pacifico", "Brush Script MT", "Segoe Script", cursive;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    text-shadow: 0 5px 12px rgba(31, 60, 118, .12);
}

.gallery-page-intro,
.gallery-group-description {
    max-width: 920px;
    color: rgba(58, 44, 35, .88);
}

.gallery-page-intro > *:first-child,
.gallery-group-description > *:first-child {
    margin-top: 0;
}

.gallery-page-intro > *:last-child,
.gallery-group-description > *:last-child {
    margin-bottom: 0;
}

.gallery-group + .gallery-group {
    margin-top: 34px;
}

.gallery-group-head {
    margin-bottom: 30px;
}

.gallery-group-title {
    margin-bottom: 26px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.32;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.gallery-page-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.gallery-group-footer {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.gallery-page-item.is-hidden {
    display: none;
}

