.cto-html-sitemap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cto-sitemap-section {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.cto-sitemap-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.cto-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.cto-sitemap-list li {
    padding: 8px 0;
}

.cto-sitemap-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cto-sitemap-list a:hover {
    color: #666;
    text-decoration: underline;
}

.post-date, .post-count {
    color: #666;
    font-size: 0.9em;
    margin-left: 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .cto-sitemap-list {
        grid-template-columns: 1fr;
    }
    
    .cto-html-sitemap {
        padding: 10px;
    }
    
    .cto-sitemap-section {
        padding: 15px;
    }
} 