.sitemap-content {
    padding-bottom: 67px;
}
.border {
    border: 1px dashed #C1AE80;
    margin-block: 29px 26px;
    &:first-of-type {
        margin-block: 16px 21px;
    }
}
.sitemap-list {
    display: grid;
    gap: 14px;
    margin-left: 17px;
}
.sitemap-link {
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: .3s;
    &::before {
        content: "";
        display: inline-block;
        width: 11px;
        height: 12px;
        background: url(../img/sitemap/ico_arrow.webp) no-repeat center/cover;
        margin-right: 7px;
    }
    &:hover {
        opacity: .5;
    }
}
.sitemap-link--home {
    font-size: 15px;
}
@media(min-width:751px) {
    .sitemap-content {
        padding-bottom: 75px;
    }
    .border {
        margin-block: 19px;
        &:first-of-type {
            margin-block: 16px 19px;
        }
    }
    .sitemap-list {
        max-width: 848px;
        grid-template-columns: 32.62% 23.12% 28.65%;
        justify-content: space-between;
        margin-inline: auto;
    }
    .sitemap-link {
        font-size: 18px;
        letter-spacing: 0;
        &::before {
            width: 13px;
            height: 14px;
            margin-right: 9px;
        }
    }
    .sitemap-link--home {
        font-size: 24px;
    }
}