// 1. Suppress the animated line of the original library.

@use '@tokens' as tokens;

#cc-main .cc__link,
#cc-main a {
    text-decoration: none;
    text-decoration-skip-ink: none;
    text-underline-offset: 0.1875em;
    color: var(--cc-link-color, tokens.$link-primary-state-default);
    background: none; // 1.

    &:hover {
        text-decoration: underline;
        color: var(--cc-link-color, tokens.$link-primary-state-hover);
    }
}
