.Dashboard-Content-Line{
    display: grid;
    gap: 4px;
    align-content: start;
}
/*.Dashboard-Content-Line--category{*/
/*    font-weight: bold;*/
/*    font-size: 13px;*/
/*    line-height: 20px;*/
/*    color: var(--site-color-corporate);*/
/*}*/
.Dashboard-Content-Line--category-link {
    text-decoration: none;
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    transition: background-size .3s;
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    color: var(--site-color-corporate);
}
.Dashboard-Content-Line--name{
    font-family: var(--site-font-family-name);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--site-color-name);
    text-decoration: none;
    transition: color 50ms linear;
}
.Dashboard-Content-Line--name:hover,
.Dashboard-Content-Line--name:focus{
    color: var(--site-color-corporate);
}
@media (min-width: 991px){
    .Dashboard-Content-Line--category-link:hover {
        background-size: 100% 2px;
    }
}