.aol-animate-card {
    opacity: 0;
    transform: translate3d(0, 28px, 0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;

    transition-delay: var(--delay, 0ms) !important;

    will-change: opacity, transform !important;
    backface-visibility: hidden !important;
}

.aol-animate-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .aol-animate-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Hero entrance stagger: fixed-delay fade/rise-in for above-the-fold content
   (loads immediately, unlike .aol-animate-card which waits for scroll-into-view). */
@keyframes aol-hero-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.aol-hero-fade {
    opacity: 0;
    animation: aol-hero-fade-up 1s forwards;
}

.aol-hero-fade-1 { animation-delay: .3s; }
.aol-hero-fade-2 { animation-delay: .6s; }
.aol-hero-fade-3 { animation-delay: .9s; }
.aol-hero-fade-4 { animation-delay: 1.2s; }
.aol-hero-fade-5 { animation-delay: 1.5s; }
.aol-hero-fade-6 { animation-delay: 2s; }

@media (prefers-reduced-motion: reduce) {
    .aol-hero-fade {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}