.sitemap-wrapper{
    width: fit-content;
    margin: auto;
}
.site-item{
    margin: 15px 0;
    display: flex;
    align-items: center;
}
.site-item .marker{
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #58656f;
    aspect-ratio: 1 / 1;
    margin: 0 20px 0 0;
}
.site-item a{
    font-size: 1.2rem;
    line-height: 1;
    color: #58656f;
    position: relative;
}
.site-item a:after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #58656f;
    top: 100%;
    position: absolute;
    left: 0;
    transition: 100ms all !important;

}
.site-item ~ .site-item:not(:has(.marker)) a{
    margin-top: 15px;
}
.site-item a:hover:after{
    width: 0%;
}