/* Quartier G Specific Layout Styles */

/* Override gallery grid for no gaps */
.gallery-container .gallery-grid {
    gap: 0;
}

/* Remove margin between gallery items */
.gallery-container .gallery-item {
    margin-bottom: 0;
}

/* Remove border-radius from all images by default */
.gallery-container .gallery-item img {
    border-radius: 0;
}

/* First image - round top corners only */
.gallery-container .gallery-item:first-child img {
    border-radius: 8px 8px 0 0;
}

/* Last image - round bottom corners only */
.gallery-container .gallery-item:last-child img {
    border-radius: 0 0 8px 8px;
}

/* Video support (if needed) - same rules */
.gallery-container .gallery-item video {
    border-radius: 0;
}

.gallery-container .gallery-item:first-child video {
    border-radius: 8px 8px 0 0;
}

.gallery-container .gallery-item:last-child video {
    border-radius: 0 0 8px 8px;
}
