/* =============================================================================
   KE Container Lottie-Background — v0.62.0
   Lottie-Animation als Container/Section-Hintergrund. Echte SVG-Ebene
   (kein Pseudo-Element), hinter dem Inhalt. Aktivierung via prefix_class
   `.ke-clottie-yes`; Konfiguration via CSS-Vars + prefix_class (siehe JS).
   ============================================================================= */

.ke-clottie-yes {
    position: relative;
}

.ke-clottie-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1; /* via ke_clottie_opacity-Control überschrieben */
}

.ke-clottie-bg svg {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Inhalt über die Lottie-Ebene heben (direkte Kinder des Wrappers,
   außer der BG-Ebene selbst). */
.ke-clottie-yes > :not(.ke-clottie-bg) {
    position: relative;
    z-index: 1;
}
