.gallery-page__hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(52, 152, 219, 0.35) 100%),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
}

.gallery-page__intro {
    max-width: 60rem;
    font-size: 1.05rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 1.5rem;
}

.modern-gallery-grid {
    columns: 1;
    column-gap: 1rem;
}

.modern-gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 38px rgba(44, 62, 80, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.modern-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(44, 62, 80, 0.2);
}

.modern-gallery-item a {
    display: block;
    position: relative;
}

.modern-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.modern-gallery-item__overlay {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(20, 25, 30, 0.78) 100%);
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (min-width: 576px) {
    .modern-gallery-grid {
        columns: 2;
    }
}

@media (min-width: 992px) {
    .modern-gallery-grid {
        columns: 3;
        column-gap: 1.25rem;
    }

    .modern-gallery-item {
        margin-bottom: 1.25rem;
    }
}
