@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in > :nth-child(-n+3) {
    opacity: 0;
    animation: hero-fade-in 0.9s ease-out forwards;
}

.hero-fade-in > :nth-child(1) {
    animation-delay: 0.1s;
}

.hero-fade-in > :nth-child(2) {
    animation-delay: 0.25s;
}

.hero-fade-in > :nth-child(3) {
    animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .hero-fade-in > :nth-child(-n+3) {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
