/* Small, modern affordances (kept subtle; honors reduced-motion). */

.content {
  animation: page-in 420ms ease both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
}

