/* ============================================================
   Site Map - Responsive Layout
   Used by site_map.asp (self-contained so its cache can be
   versioned independently of content-pages_v1.css).
   ============================================================ */

.page-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 28px 16px 48px;
    box-sizing: border-box;
}

.page-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    padding: 32px;
    box-sizing: border-box;
}

.page-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 18px;
}

/* ---- Site map list ---- */
.sitemap {
    margin-top: 4px;
}

.sitemap-dept {
    margin: 18px 0 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eef2f7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sitemap-dept:first-child {
    margin-top: 0;
}

.sitemap-item {
    padding: 3px 0 3px 18px;
}

.sitemap-item a {
    color: #334155;
    text-decoration: none;
    line-height: 1.9;
}

.sitemap-item a:hover {
    color: #4a90d9;
    text-decoration: underline;
}

.sitemap-footer {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .page-wrap {
        padding: 16px 12px 36px;
    }
    .page-card {
        padding: 20px;
        border-radius: 10px;
    }
    .page-card-title {
        font-size: 1.2rem;
    }
}
