/* ========================================
   ADDITIONAL TAILWIND UTILITIES
   ======================================== */

.backdrop-blur-xl {
    backdrop-filter: blur(20px);
}

/* Mobile menu open/closed state */
.mobile-menu-closed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.mobile-menu-open {
    max-height: 600px;
}

/* Card hover shorthand used on a few legacy elements */
.card-hover {
    transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.card-hover:hover {
    transform: translateY(-6px);
}

.shadow-card {
    box-shadow: 0 10px 25px rgba(13, 43, 78, 0.08);
}
