/*Ссылки*/
.a {
    font-size: 24px;
    text-decoration: none;
    color: var(--colorRed);
    position: relative;
    transition: color 0.3s;
}

.a::after { /*подчёркивание ссылки*/
    content: '';
    display: block;
    height: 1px;
    background-color: var(--colorRed);
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    transform: scaleX(0); /* скрыта изначально */
    transition: transform 0.3s ease;
}

/*подчеркивание при наведении */
/*.a:hover::after {
    transform: scaleX(1); 
}*/


.a:active {
    color: var(--colorDarkRed);
}

.a:active::after {
    background-color: var(--colorDarkRed);
}
