/* ==========================================================================
   LLM Capsule — Cookie Policy (plain legal-document layout)
   Mirrors the source LLM Capsule page: system font, black ink, hr rules
   between sections, bordered tables with a light header row. Shares the same
   look as page-privacy-policy.css; scoped under .legal.
   ========================================================================== */

.legal {
    background: #ffffff;
    color: rgb(17, 17, 17);
}

.legal__doc {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans KR', Arial, sans-serif;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: anywhere;
    box-sizing: border-box;
}

/* ── Headings ───────────────────────────────────────────────────────────── */
.legal__title {
    font-size: 2rem;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: rgb(17, 17, 17) !important;
    margin: 0 0 0.5em;
}

.legal__section-title {
    font-size: 1.25rem;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: rgb(17, 17, 17) !important;
    margin: 2em 0 0.6em;
}

.legal__section > .legal__section-title:first-child {
    margin-top: 0.6em;
}

/* ── Text ───────────────────────────────────────────────────────────────── */
.legal__doc p {
    margin: 0.6em 0;
}

.legal__meta {
    margin: 0.6em 0 1.2em;
}

.legal__doc a {
    color: rgb(17, 85, 204);
    text-decoration: underline;
}

.legal__rule {
    border: 0;
    border-top: 1px solid rgb(204, 204, 204);
    margin: 2em 0;
}

/* ── Tables ─────────────────────────────────────────────────────────────── */
.legal__table-wrap {
    margin: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.legal__table th,
.legal__table td {
    border: 1px solid rgb(204, 204, 204);
    padding: 0.75rem;
    vertical-align: top;
    text-align: left;
}

.legal__table th {
    background: rgb(246, 246, 246);
    font-weight: 600;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .legal__doc {
        padding: 32px 18px;
    }
    .legal__title {
        font-size: 1.6rem;
    }
    .legal__table {
        font-size: 0.85rem;
    }
    .legal__table th,
    .legal__table td {
        padding: 0.5rem;
    }
}
