/* Blog card hover effect to match Home page */
.card:hover,
.card:focus,
a.card:hover,
a.card:focus {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    transform: translateY(-4px) scale(1.03);
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 2;
}