.linehover[data-elem-type="text"] a {
    position: relative;
    transition: color 300ms ease-out;
}

.linehover[data-elem-type="text"] a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: #fff;
    z-index: 9999999;
    transition: width 300ms ease-out;
    mix-blend-mode: difference;
}

.linehover[data-elem-type="text"] a > span {
    position: relative;
    z-index: 999999999;
}  

.linehover[data-elem-type="text"] a:hover {
    transition: none;
    color: #ffffff;
    mix-blend-mode: difference;
} 
    
.linehover[data-elem-type="text"] a:hover::before {
    transition: none;
    width: 100%;
    mix-blend-mode: difference;
}

