/**
 * Анимации для карточек
 * Только для главной страницы
 */

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

.post-card {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

/* Задержки для каждой карточки */
.post-card:nth-child(1) { animation-delay: 0.05s; }
.post-card:nth-child(2) { animation-delay: 0.10s; }
.post-card:nth-child(3) { animation-delay: 0.15s; }
.post-card:nth-child(4) { animation-delay: 0.20s; }
.post-card:nth-child(5) { animation-delay: 0.25s; }
.post-card:nth-child(6) { animation-delay: 0.30s; }
.post-card:nth-child(7) { animation-delay: 0.35s; }
.post-card:nth-child(8) { animation-delay: 0.40s; }
.post-card:nth-child(9) { animation-delay: 0.45s; }
.post-card:nth-child(10) { animation-delay: 0.50s; }
.post-card:nth-child(11) { animation-delay: 0.55s; }
.post-card:nth-child(12) { animation-delay: 0.60s; }
.post-card:nth-child(13) { animation-delay: 0.65s; }
.post-card:nth-child(14) { animation-delay: 0.70s; }
.post-card:nth-child(15) { animation-delay: 0.75s; }
.post-card:nth-child(16) { animation-delay: 0.80s; }
.post-card:nth-child(17) { animation-delay: 0.85s; }
.post-card:nth-child(18) { animation-delay: 0.90s; }
.post-card:nth-child(19) { animation-delay: 0.95s; }
.post-card:nth-child(20) { animation-delay: 1.00s; }