/* 1. Extrem breiter Filter: Erfasst alle iPads (Normal, Air, Pro) im Hoch- und Querformat */
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) {
    
    /* Zwingt die umschließende SP-Page-Builder-Zeile auf volle Breite */
    .sppb-home #sp-main-body .sppb-row:first-of-type,
    .sppb-home #sp-main-body .sppb-row:first-of-type .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Setzt JEDE Spalten-Klasse (egal ob col-sm, col-md oder col-lg) in dieser Zeile auf 100% */
    .sppb-home #sp-main-body .sppb-row:first-of-type [class*="sppb-col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        float: none !important;
    }

    /* Zwingt das Image-Addon und das darin liegende Bild in die Mitte und auf volle Breite */
    .sppb-home #sp-main-body .sppb-row:first-of-type .sppb-addon-single-image {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .sppb-home #sp-main-body .sppb-row:first-of-type .sppb-addon-single-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: inline-block !important;
    }
}