/* Card lift on hover */
.lift {
    transition: transform .25s ease, box-shadow .25s ease;
}

.lift:hover,
.lift:focus {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 .5rem 2rem rgba(31, 45, 61, 0.15) !important;
}

.lift-lg:hover,
.lift-lg:focus {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 1rem 2.5rem rgba(31, 45, 61, 0.15) !important;
}

/* Additional shadow classes */
.shadow-light-lg {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .15) !important;
} 