/* Mobile Gallery Layout - 2 images per row */
@media (max-width: 768px) {
    .gallery-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 0 10px;
    }
    
    .gallery-item {
        height: 180px !important;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
        display: flex;
        align-items: flex-end;
        padding: 10px;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .gallery-info h3 {
        font-size: 0.9rem !important;
        color: white;
        margin: 0 0 2px 0;
        line-height: 1.2;
    }
    
    .gallery-info p {
        font-size: 0.75rem !important;
        color: rgba(255,255,255,0.8);
        margin: 0;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        gap: 0.5rem !important;
        padding: 0 5px;
    }
    
    .gallery-item {
        height: 150px !important;
    }
    
    .gallery-info h3 {
        font-size: 0.8rem !important;
    }
    
    .gallery-info p {
        font-size: 0.7rem !important;
    }
}