/* ==========================================================================
   CâlinCâlin — Core Keyframe Animations & Utilities
   ========================================================================== */

@keyframes loadIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-load-in {
  animation: loadIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom padding utility helper matching px-10 */
.py-4\.5 {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}
