.pages-cover {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: min(100%, 1040px);
    margin: 75px auto 0;
    padding: clamp(48px, 6vw, 78px) clamp(22px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(255 111 0 / 10%);
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 16%, rgb(255 111 0 / 9%) 0, transparent 32%),
        radial-gradient(circle at 88% 78%, rgb(0 0 0 / 7%) 0, transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    box-shadow: 0 22px 65px rgb(0 0 0 / 8%);
    text-align: center;
}

.pages-cover::before,
.pages-cover::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
}

.pages-cover::before {
    width: 260px;
    height: 260px;
    inset-inline-start: -130px;
    top: -90px;
    background: rgb(255 111 0 / 7%);
}

.pages-cover::after {
    width: 190px;
    height: 190px;
    inset-inline-end: -80px;
    bottom: -70px;
    border: 32px solid rgb(0 0 0 / 5%);
}

.pages-cover .pgt-h1 {
    max-width: 860px;
    margin: 0 0 18px;
    color: var(--primary-text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -.4px;
    text-align: center;
}

.pages-cover .p-content,
.pages-cover p {
    max-width: 760px;
    margin-inline: auto;
    color: var(--secondarytext);
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
}

.links--sitemap-items-title {
    position: relative;
    width: fit-content;
    margin: 0 0 18px;
    padding: 0 0 12px;
    color: var(--primary-text);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
}

.links--sitemap-items-title::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: var(--uicolor);
}

.links--sitemap-items-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.links--sitemap-items-lists > a {
    position: relative;
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 13px 16px;
    border: 1px solid rgb(0 0 0 / 8%);
    border-radius: 16px;
    background: #ffffff;
    color: var(--primary-text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    box-shadow: 0 10px 28px rgb(0 0 0 / 5%);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        color .25s ease,
        background-color .25s ease;
}

.links--sitemap-items-lists > a p {
    margin: 0;
}

.links--sitemap-items-lists > a::before {
    content: var(--chevron);
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 111 0 / 8%);
    color: var(--uicolor);
    font-family: "Font Awesome 5 Pro", "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    transform: rotate(90deg);
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.links--sitemap-items-lists > a:hover {
    color: var(--uicolor);
    padding-inline-start: 16px;
    border-color: rgb(255 111 0 / 18%);
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgb(0 0 0 / 9%);
}

.links--sitemap-items-lists > a:hover::before {
    background: var(--uicolor);
    color: #ffffff;
    transform: rotate(90deg) scale(1.06);
}

@media only screen and (max-width: 992px) {
    .pages-cover {
        width: calc(100% - 40px);
        max-width: 1200px;
        margin-top: 58px;
        padding: 42px 22px;
        border-radius: 26px;
    }

    .pages-cover .pgt-h1 {
        font-size: 30px;
        line-height: 1.45;
        margin-bottom: 14px;
    }

    .pages-cover .p-content,
    .pages-cover p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media only screen and (max-width: 768px) {
    .links--sitemap-items-lists {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .links--sitemap-items-title {
        font-size: 18px;
    }

    .links--sitemap-items-lists > a {
        min-height: 50px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 592px) {
    .pages-cover {
        width: calc(100% - 28px);
        margin-top: 44px;
        padding: 32px 16px;
        border-radius: 22px;
    }

    .pages-cover::after {
        display: none;
    }

    .pages-cover .pgt-h1 {
        font-size: 22px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .pages-cover .p-content,
    .pages-cover p {
        font-size: 14px;
        line-height: 1.75;
    }

    .links--sitemap-items-title {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .links--sitemap-items-lists > a {
        font-size: 14px;
    }

    .links--sitemap-items-lists > a::before {
        width: 26px;
        min-width: 26px;
        height: 26px;
        border-radius: 9px;
        font-size: 10px;
    }
}