.card {
    position: relative;
}

/* On mobile, disable stickiness and make cards full-width */
@media (max-width: 768px) {
    .sticky-card {
        position: relative !important;
        /* Change to relative instead of static */
        top: auto !important;
        width: 100% !important;
        margin-bottom: 1rem;
    }

    .sticky-card .clickable-overlay {
        position: absolute;
        /* Ensure it stays within the card */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        text-decoration: none;
        background: transparent;
    }
}

.columns {
    margin-top: 10px;
}