/**
 * Disable entrance animations on mobile screens (< 768px) sitewide
 * to improve rendering performance and Time to Interactive (TTI).
 */
@media screen and (max-width: 767px) {
    .elementor-invisible {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .animated,
    [data-settings*="animation"] {
        animation: none !important;
        animation-name: none !important;
        transition: none !important;
    }
}
