.sitemap-page {
    margin: 0 0 44px;
}

.sitemap-intro {
    padding: 28px 30px;
    margin: 0 0 22px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #b51d2a;
    border-radius: 8px;
    background: #ffffff;
}

.sitemap-intro h1 {
    margin: 0 0 12px;
    color: #1f2933;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.sitemap-description {
    max-width: 760px;
    color: #52606d;
    font-size: 15px;
    line-height: 1.7;
}

.sitemap-description p {
    margin: 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.sitemap-section {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(31, 41, 51, 0.06);
}

.sitemap-section-catalog,
.sitemap-section-information {
    grid-row: span 2;
}

.sitemap-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
}

.sitemap-section-header h2 {
    margin: 0;
    color: #1f2933;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.sitemap-section-header h2 a {
    color: inherit;
    text-decoration: none;
}

.sitemap-section-header h2 a:hover {
    color: #b51d2a;
}

.sitemap-section-mark {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #b51d2a;
    box-shadow: 0 0 0 5px rgba(181, 29, 42, 0.12);
}

.sitemap-section-special .sitemap-section-mark {
    background: #d97706;
    box-shadow: 0 0 0 5px rgba(217, 119, 6, 0.13);
}

.sitemap-section-information .sitemap-section-mark {
    background: #2563eb;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.sitemap-section-blog .sitemap-section-mark {
    background: #0f766e;
    box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.13);
}

.sitemap-list,
.sitemap-sublist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sitemap-list > li {
    margin: 0 0 12px;
}

.sitemap-list > li:last-child,
.sitemap-sublist > li:last-child {
    margin-bottom: 0;
}

.sitemap-list-columns {
    columns: 2 220px;
    column-gap: 24px;
}

.sitemap-list-columns > li {
    break-inside: avoid;
}

.sitemap-link {
    position: relative;
    display: inline-block;
    padding-left: 16px;
    color: #344054;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

.sitemap-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #98a2b3;
}

.sitemap-link:hover {
    color: #b51d2a;
    text-decoration: none;
}

.sitemap-link:hover:before {
    background: #b51d2a;
}

.sitemap-link-parent {
    color: #1f2933;
    font-weight: 700;
}

.sitemap-sublist {
    margin: 8px 0 2px 18px;
}

.sitemap-sublist > li {
    margin: 0 0 7px;
}

.sitemap-sublist .sitemap-link {
    color: #52606d;
    font-size: 13px;
}

.sitemap-sublist .sitemap-link:hover {
    color: #b51d2a;
}

.sitemap-sublist-nested {
    margin-top: 6px;
}

@media (max-width: 991px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-section-catalog,
    .sitemap-section-information {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .sitemap-intro {
        padding: 22px 18px;
    }

    .sitemap-intro h1 {
        font-size: 25px;
    }

    .sitemap-section {
        padding: 18px;
    }

    .sitemap-list-columns {
        columns: 1;
    }
}
