/* components/how-were-run.css */

/* Smooth hover effects for cards */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Ensure button transitions are smooth */
.cta-button {
    transition: background-color 0.2s ease-in-out;
}