/**
 * Clickable card styling - stretches the card's one real link to cover 
 * the whole card.
 *
 * Apply the `siku-card` class (block Advanced > Additional CSS class(es))
 * to the individual card wrapper (the Group block with the background
 * color/border-radius/top-accent-color), not the outer grid container.
 */

.siku-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.siku-card:has(a:hover) {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.siku-card a {
    text-decoration: none;
}

.siku-card a::after {
    content: "";
    position: absolute;
    inset: 0;
}
