/* Gallery Mobile Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-buttons {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .gallery-item.featured {
        grid-column: 1;
        grid-row: auto;
    }
    
    .gallery-item.featured img {
        height: 250px;
    }
    
    .lightbox-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .lightbox-content {
        max-width: 100%;
        max-height: 50vh;
    }
    
    .lightbox-info {
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-item::after {
        font-size: 2rem;
    }
    
    .lightbox-nav span {
        font-size: 2rem;
        padding: 0.5rem;
    }
}