/**
 * BS iFrame Widget – Frontend-Styles
 *
 * Responsives iFrame ohne JavaScript.
 * Die Höhe wird als inline-Style am Wrapper gesetzt (konfigurierbar im Widget).
 */

.bs-iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Höhe kommt als inline-Style vom Widget */
}

.bs-iframe-wrapper .bs-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
