/* Sitemap Page CSS - CMS /sitemap */

.sitemap-header-area {
    text-align: center;
    padding: 30px 20px 20px;
}

.sitemap-title {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.sitemap-description {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

.sitemap-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.sitemap-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.15rem;
    color: #444;
    padding-bottom: 8px;
    border-bottom: 2px solid #e94560;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.category-title i {
    margin-right: 6px;
    color: #e94560;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-item {
    margin-bottom: 4px;
}

.sitemap-link {
    display: flex;
    align-items: flex-start;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.sitemap-link:hover {
    background-color: #f5f5f5;
}

.sitemap-icon {
    width: 20px;
    margin-right: 12px;
    margin-top: 3px;
    color: #888;
    text-align: center;
    flex-shrink: 0;
}

.sitemap-link-content {
    display: flex;
    flex-direction: column;
}

.sitemap-link-name {
    font-size: 1rem;
    font-weight: 500;
    color: #1a73e8;
}

.sitemap-link:hover .sitemap-link-name {
    text-decoration: underline;
}

.sitemap-link-desc {
    font-size: 0.82rem;
    color: #777;
    margin-top: 2px;
}

.sitemap-link-url {
    font-size: 0.75rem;
    color: #0d7c2e;
    margin-top: 2px;
    font-family: monospace;
}

.sitemap-error {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 1rem;
}

/* PC Grid Layout */
@media (min-width: 768px) {
    .sitemap-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 16px;
    }

    .sitemap-item {
        margin-bottom: 0;
    }

    .sitemap-link {
        height: 100%;
        padding: 12px 16px;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

    .sitemap-link:hover {
        background-color: #f8f9ff;
        border-color: #d0d7ff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .sitemap-title {
        font-size: 1.4rem;
    }

    .sitemap-body {
        padding: 0 12px 30px;
    }

    .sitemap-link {
        padding: 8px 10px;
    }
}
