 .hsm-sitemap-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hsm-sitemap-title {
    font-size: 28px;
    border-bottom: 3px solid #e94560;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.hsm-section {
    margin-bottom: 30px;
}

.hsm-section-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #e94560;
}

.hsm-sitemap-list {
    list-style: none;
    margin: 0;
    padding-left: 20px;
}

.hsm-sitemap-list.level-0 {
    padding-left: 0;
}

.hsm-sitemap-list li {
    margin: 8px 0;
    padding: 5px;
    transition: background 0.2s;
}

.hsm-sitemap-list li:hover {
    background: #f8f9fa;
    border-radius: 6px;
}

.hsm-icon {
    font-size: 16px;
    margin-right: 8px;
}

.hsm-sitemap-list a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
}

.hsm-sitemap-list a:hover {
    color: #e94560;
    text-decoration: underline;
}

.hsm-date {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.hsm-count {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Listas responsivas */
@media (max-width: 768px) {
    .hsm-sitemap-wrapper {
        padding: 10px;
    }
    
    .hsm-sitemap-list {
        padding-left: 15px;
    }
}