/* Projects Section */

.home-projects-section {
    padding: 2.75rem 0;
}

.home-projects-header {
    text-align: start;
    margin-bottom: 1.75rem;
}

.home-projects-title {
    text-align: start;
}

@keyframes cardRevealUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
    .home-projects-section.is-visible .insight-card:nth-child(1) { animation: cardRevealUp 0.6s ease 0.1s  backwards; }
    .home-projects-section.is-visible .insight-card:nth-child(2) { animation: cardRevealUp 0.6s ease 0.22s backwards; }
    .home-projects-section.is-visible .insight-card:nth-child(3) { animation: cardRevealUp 0.6s ease 0.34s backwards; }
    .home-projects-section.is-visible .insight-card:nth-child(4) { animation: cardRevealUp 0.6s ease 0.46s backwards; }
    .home-projects-section.is-visible .insight-card:nth-child(n+5) { animation: cardRevealUp 0.6s ease 0.58s backwards; }
}

@media (max-width: 700px) {
    .home-projects-section {
        padding: 2.25rem 0;
    }
}

@media (max-width: 480px) {
    .home-projects-section {
        padding: 2rem 0;
    }
}

[dir="rtl"] .home-projects-title::after {
    background: linear-gradient(225deg, var(--blue), var(--navy));
}
