/**
 * Swiper Gallery Slider Styles (Minimal)
 * 
 * Relies entirely on swiper-bundle.min.css for core styling.
 * Only WordPress-specific overrides and minor customizations below.
 */

.apb-gallery-slider {
    margin: 20px 0;
}

.swiper-main-gallery {
    margin-bottom: 15px;
}

/* Maintain image aspect ratio */
.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.swiper-thumbnails-gallery {
    margin-top: 15px;
}

/* WordPress Block Alignment Classes */
.apb-gallery-slider.alignwide {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
}

.apb-gallery-slider.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

.apb-gallery-slider.aligncenter {
    margin-left: auto;
    margin-right: auto;
}
