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