/* применяем hover к контейнеру tn-elem */
.underline-hover .tn-text {
    transition: all .25s ease;
    text-decoration: none;
}

/* при наведении — подчеркивание */
.underline-hover:hover .tn-text {
    text-decoration: underline;
    text-underline-offset: 4px; /* расстояние от текста */
}
