.pub-sitemap { padding: 36px 0 60px; }
.pub-sitemap__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.pub-sitemap__col {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pub-sitemap__col h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1e293b;
    padding-bottom: 10px;
    border-bottom: 2px solid #f59e0b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pub-sitemap__col h2 i { color: #f59e0b; }
.pub-sitemap__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pub-sitemap__col li {
    margin-bottom: 8px;
    font-size: 14px;
}
.pub-sitemap__col a {
    color: #334155;
    text-decoration: none;
    transition: color .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pub-sitemap__col a:hover { color: #f59e0b; }
.pub-sitemap__col a::before {
    content: "›";
    color: #94a3b8;
    font-weight: 700;
}
.pub-sitemap__empty { color: #94a3b8; font-size: 13px; }
