/* Tailwind via CDN handles 99% of styling. Anything that doesn't fit a utility lives here. */

.card-hover {
    transition: transform 150ms ease, box-shadow 150ms ease;
}
.card-hover:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 43, 70, 0.06);
}
