/* Custom overrides — Tailwind handles the heavy lifting */

/* Smooth transitions site-wide */
*, *::before, *::after {
    transition-property: color, background-color, border-color, opacity, transform;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disable transition on page load flash */
.no-transition * { transition: none !important; }
