/* ===== Legal Pages (terms, privacy) ===== */
.legal-page {
    padding: calc(var(--p-header-h) + 48px) 0 80px;
}
.legal-page .container {
    max-width: 720px;
}
.legal-page h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--p-text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.legal-date {
    font-size: 13px;
    color: var(--p-text-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--p-border-light);
}
.legal-page h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--p-text);
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--p-border-light);
}
.legal-page h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--p-text-light);
    margin-top: 20px;
    margin-bottom: 8px;
}
.legal-page p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--p-text-light);
    margin-bottom: 12px;
}
.legal-page ol,
.legal-page ul {
    font-size: 14px;
    line-height: 1.8;
    color: var(--p-text-light);
    margin-bottom: 12px;
    padding-left: 20px;
}
.legal-page ol { list-style: decimal; }
.legal-page ul { list-style: disc; }
.legal-page li {
    margin-bottom: 6px;
}
.legal-page li ul,
.legal-page li ol {
    margin-top: 6px;
    margin-bottom: 6px;
}
.legal-page strong {
    color: var(--p-text);
    font-weight: 600;
}

/* 강조 박스 (환불 규정 등) */
.legal-highlight {
    background: var(--p-bg-soft);
    border: 1px solid var(--p-border-light);
    border-left: 3px solid var(--p-primary);
    border-radius: 0 var(--p-radius) var(--p-radius) 0;
    padding: 20px 24px;
    margin: 16px 0;
}
.legal-highlight ol,
.legal-highlight ul,
.legal-highlight p {
    margin-bottom: 8px;
}
.legal-highlight li:last-child {
    margin-bottom: 0;
}

/* 테이블 (수집항목 등) */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}
.legal-table th,
.legal-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--p-border-light);
    line-height: 1.6;
}
.legal-table th {
    background: var(--p-bg-soft);
    font-weight: 600;
    color: var(--p-text);
    font-size: 12px;
    white-space: nowrap;
}
.legal-table td {
    color: var(--p-text-light);
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: calc(var(--p-header-h) + 32px);
    }
    .legal-page h2 {
        margin-top: 32px;
    }
}
