/* HolyCloud V2 - Sitemap Page Premium Styles */

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}

.sitemap-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
    border-color: var(--hc-primary);
}

.sitemap-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hc-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sitemap-card h2 i {
    color: var(--hc-primary);
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sitemap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.sitemap-item:hover {
    background: #fff;
    border-color: var(--hc-primary);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.sitemap-link {
    color: var(--hc-primary);
    font-weight: 600;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sitemap-badge {
    font-size: 0.75rem;
    color: var(--hc-text-muted);
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 700;
    white-space: nowrap;
}