﻿.title-hover {
    width: fit-content;
    position: relative;
}

.title-hover-title {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 33px;
    width: fit-content;
    color: var(--color-white);
}

.title-hover-underline {
    position: absolute;
    top: 100%;
    left: 0;
    height: 5px;
    width: 3ch;
    background-color: currentColor;
    transition: width .3s ease;
}

.title-hover:hover .title-hover-underline {
    width: 100%;
}

.title-hover-title > a {
    color:var(--color-white);
}

.title-hover a:hover {
    color:var(--color-white);
}




