/*
 * Quick 1.5.0 r4 - Elementor/theme frame bridge.
 *
 * This file owns only the relationship between Elementor's native Boxed
 * container inner frame and Quick's single site content width. It does not
 * size widgets, headers, footers, or the outer container/background.
 */
@media (min-width:1025px) {
    html body.quantum-theme .elementor :where(.e-con.e-con-boxed) > .e-con-inner {
        width:min(100%,var(--q-site-content-width,var(--q-container,1320px)));
        max-width:var(--q-site-content-width,var(--q-container,1320px));
        margin-inline:auto;
        box-sizing:border-box;
    }
}
