/* ─── Blog list — card entrance animation ─── */

@keyframes blog-fade-in-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

#blog-grid article {
  opacity: 0;
  animation: blog-fade-in-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
#blog-grid article:nth-child(1) { animation-delay: 0.04s; }
#blog-grid article:nth-child(2) { animation-delay: 0.09s; }
#blog-grid article:nth-child(3) { animation-delay: 0.14s; }
#blog-grid article:nth-child(4) { animation-delay: 0.19s; }
#blog-grid article:nth-child(5) { animation-delay: 0.24s; }
#blog-grid article:nth-child(6) { animation-delay: 0.29s; }

@media (prefers-reduced-motion: reduce) {
  #blog-grid article {
    animation: none;
    opacity: 1;
  }
}
