/* No initial styles: the complete, static Elementor layout remains the default. */
@media (prefers-reduced-motion: no-preference) {
    .apmm-motion-card.apmm-motion-active:not(:focus-within) {
        animation: apmm-card-in 200ms ease-out;
    }

    /* An inset accent only: fields, labels and focus outlines do not move. */
    .apmm-motion-form.apmm-motion-active:not(:focus-within) {
        animation: apmm-form-accent 200ms ease-out;
    }
}

@keyframes apmm-card-in {
    from { transform: translateY(6px); }
    to { transform: translateY(0); }
}

@keyframes apmm-form-accent {
    from { box-shadow: inset 0 0 0 2px rgb(255 255 255 / 24%); }
    to { box-shadow: inset 0 0 0 2px transparent; }
}
