.gallery-hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.gallery-hero h1 { color: white; }
.gallery-hero p { color: rgba(255,255,255,0.95); font-size: 1.25rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    background: var(--gradient-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: var(--space-md);
    font-weight: 600;
}
