@charset "utf-8";

.sitemap-page .section-desc {
    margin-top: 12px;
    color: var(--text-mid);
    font-size: 14px;
}

.sitemap-section {
    padding-top: clamp(100px, 12vw, 130px);
    padding-bottom: clamp(50px, 8vw, 80px);
}

.sitemap-table-wrap {
    margin-top: 32px;
}

.sitemap-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(20, 40, 73, 0.08);
}

.sitemap-table thead th {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
}

.sitemap-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text-dark);
    vertical-align: top;
    font-size: 14px;
    line-height: 1.6;
}

.sitemap-table tbody tr:nth-child(even) td {
    background: var(--bg-light);
}

.sitemap-table tbody tr:hover td {
    background: var(--aurora-soft);
}

.sitemap-table td:first-child {
    width: 72px;
    color: var(--text-soft);
    white-space: nowrap;
}

.sitemap-table td:nth-child(2) {
    width: 42%;
    word-break: break-all;
}

.sitemap-table td:nth-child(2) a {
    color: var(--tech-blue);
}

.sitemap-table td:nth-child(2) a:hover {
    color: var(--brand-red);
}

@media screen and (max-width: 850px) {
    .sitemap-table thead {
        display: none;
    }

    .sitemap-table tbody tr {
        display: block;
        margin-bottom: 14px;
        border: 1px solid var(--line);
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
    }

    .sitemap-table tbody td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 10px 14px;
    }

    .sitemap-table tbody td:first-child {
        background: var(--ink);
        color: #fff;
        font-weight: 600;
    }

    .sitemap-table tbody td:nth-child(2) {
        width: 100%;
    }
}
