/* Hand-written overrides that aren't worth a Tailwind utility.
   If something visual breaks and it's not a utility class in the markup, look here. */

::selection {
  background-color: #a9d9ea;
  color: #0f2432;
}

#listings-grid .card,
#featured-listings .card {
  animation: fade-in-up 0.4s ease both;
}

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