.sitemap-group { margin-bottom: 32px; }
.sitemap-group-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a9ab5;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8eef5;
}
.sitemap-entries { display: flex; flex-direction: column; gap: 12px; }
.sitemap-entry {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sitemap-entry:hover { border-color: #2d89ef; box-shadow: 0 2px 10px rgba(45,137,239,0.08); }
.sitemap-entry-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d89ef;
    text-decoration: none;
}
.sitemap-entry-name:hover { text-decoration: underline; }
.sitemap-entry-title {
    font-size: 0.875rem;
    color: #4a5568;
}
.sitemap-entry-intro {
    font-size: 0.82rem;
    color: #8a9ab5;
    line-height: 1.5;
    margin-top: 2px;
}
.sitemap-entry-url {
    font-size: 0.78rem;
    color: #b0bec5;
    font-family: 'DM Mono', monospace;
    margin-top: 4px;
    word-break: break-all;
}

/* -- Language Switcher -------------------------------------- */

.pub-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pub-lang-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.pub-lang-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.pub-lang-divider {
    font-size: 0.75rem;
    opacity: 0.35;
    line-height: 1;
}

body.pub-dark .pub-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}