[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: color 0.3s ease !important;
    /* цвет ссылки до наведения */
    color: #393939 !important;
}

[data-elem-type="text"] a:hover {
    /* Цвет текста при наведении — средний оттенок из вашего градиента */
    color: #A0040A !important;
}

[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    margin-bottom: -3px;
    height: 2px;  
    background: transparent; 
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 51%;
    right: 51%;
    width: 0;
}

[data-elem-type="text"] a:hover::after {
    /* Градиентное подчеркивание при наведении */
    background: linear-gradient(to right, #A0040A, #CC6367) !important;
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}