/*
 * Swiper Slider – Frontend breakout.
 * Loaded via wp_enqueue_style in render.php (never in editor).
 * The slider breaks out to full viewport width; nav stays constrained.
 */

/* ── Breakout ── */
.wp-block-stiftung-swiper-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    overflow: hidden;
    /* clips the swiper, not the outer wrapper */
}

/* ── Re-constrain the nav bar to the site container ── */
.wp-block-stiftung-swiper-slider .swiper-slider__nav {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}