/**
 * "Learn more" link row
 *
 * Apply `siku-emphasized-link` to the wrapping Group (block Advanced >
 * Additional CSS class(es)). Stretches the link to cover the whole row.
 */

.siku-emphasized-link {
    position: relative;
}

.siku-emphasized-link a {
    color: inherit;
}

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

.siku-emphasized-link svg {
    transition: transform 0.2s ease;
}

.siku-emphasized-link:has(a:hover) svg {
    transform: translateX(4px);
}
