/**
 * Photo Gallery Layout Styles
 * Minimal base styles - customize as needed
 */

.ga26-photo-gallery {
    width: 100%;
    padding: 3%;
}

.ga26-photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 300px; /* Fixed row height */
}

.ga26-photo-gallery__item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 15px;
}

.ga26-photo-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* This crops the image to fill the space */
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .ga26-photo-gallery {
        padding: 5vw;
    }
    
    .ga26-photo-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 250px; /* Smaller rows on mobile */
        gap: 5vw;
    }
}