/**
 * agenic Deko-Utilities — Flywheel-Illustration (Freigabe Vincent 10.08.2026:
 * „Flywheel darf svg sein"). Quelle: Komponente `agenic flywheel · Typ=Gradient`
 * (944:17462, Seite Assets), Export als SVG (Strichgrafik, 3 Verlaufs-Strokes);
 * Export-Artefakte (Hintergrund, Komponentenrahmen) entfernt.
 * Platzierung lt. intro-media (1654:16996): x 625, y 22, 1038×1053 bei 1440 —
 * übersetzt als calc(50% − 95px), läuft rechts aus der Sektion (overflow clip
 * der ag-sektion beschneidet). ::after statt ::before — Elementors
 * .e-con::before (Overlay-Layer) überschreibt sonst Größe/Position.
 */

.ag-deko-flywheel {
    position: relative;
}

.e-con.ag-deko-flywheel::after {
    content: '';
    position: absolute;
    left: calc(50% - 95px);                /* Quelle: x 625 bei 1440 */
    top: 80px;                             /* Figma y 22 — Abweichung: Entscheidung Vincent 02.09.2026 */
    width: 1038px;
    height: 1053px;
    background: url('../img/flywheel.svg') no-repeat center / contain;
    pointer-events: none;
}

.e-con.ag-deko-flywheel::after {
    z-index: 0;
}

.ag-deko-flywheel > * {
    position: relative;
    z-index: 1;                            /* Inhalt über der Deko */
}
