/**
 * Base Styles
 * Only fixes/resets that Elementor doesn't handle
 */

/* Remove bottom margin from last paragraph */
p:last-child {
    margin-bottom: 0;
}

/* Also remove top-margin of a <p> */
p {
    margin-top: 0;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}