


/* Apply only to text links (no img, no .t-btn, no .tn-atom) */
a:not(:has(img)):not(.t-btn):not(.tn-atom) {
    position: relative;
    text-decoration: none !important;
}

a:not(:has(img)):not(.t-btn):not(.tn-atom)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

a:not(:has(img)):not(.t-btn):not(.tn-atom):hover::after {
    width: 100%;
}

/* Remove underline effect entirely for links in #rec1204611956 */
#rec1204611956 a::after {
    content: none;
}
