body.page-sitemap {
    min-width: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 146, 198, 0.18), transparent 30%),
        linear-gradient(180deg, #fff8fc 0%, #f8f9ff 34%, #ffffff 100%);
    color: #2d2340;
}

.sitemap-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.sitemap-hero,
.sitemap-section {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(183, 171, 214, 0.14);
}

.sitemap-hero {
    margin-bottom: 24px;
}

.sitemap-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ff6797;
    text-transform: uppercase;
}

.sitemap-title {
    margin: 12px 0;
    font-size: 40px;
    line-height: 1.12;
    color: #2a1f3c;
}

.sitemap-desc,
.sitemap-meta,
.sitemap-link-time,
.sitemap-section-head span {
    color: #6b5c7d;
}

.sitemap-desc {
    font-size: 15px;
    line-height: 1.8;
}

.sitemap-meta {
    margin-top: 14px;
    font-size: 13px;
}

.sitemap-section {
    margin-bottom: 20px;
}

.sitemap-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.sitemap-section-head h2 {
    margin: 0;
    font-size: 26px;
    color: #2f2442;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sitemap-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fff9fd 100%);
    box-shadow: 0 14px 28px rgba(204, 188, 228, 0.14);
}

.sitemap-link-name {
    font-size: 15px;
    font-weight: 700;
    color: #34274a;
    word-break: break-word;
}

.sitemap-link-time {
    font-size: 12px;
}

@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sitemap-shell {
        width: min(100%, calc(100% - 24px));
        padding-top: 18px;
    }

    .sitemap-hero,
    .sitemap-section {
        padding: 20px;
        border-radius: 24px;
    }

    .sitemap-title {
        font-size: 30px;
    }

    .sitemap-links {
        grid-template-columns: 1fr;
    }

    .sitemap-section-head h2 {
        font-size: 22px;
    }
}
