.minimal-bento-section {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: fadeInUpMinimalBento 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}

@keyframes fadeInUpMinimalBento {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
