.sitemap__heading {
    line-height: 42px;
    font-size: 16px;
    font-weight: bold;
}

.sitemap__section {
    padding: 10px 20px;
}

.sitemap__link {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 9px 0 9px 15px;
    text-decoration: none;
    color: var(--secondary-color);
    box-sizing: border-box;
}

.sitemap__link::after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: ">";
    transform: scale(0.5, 1) translateY(-50%);
}