/*
 * Roboteka — Legal pages (EULA, privacy policy)
 *
 * Standalone styles for static legal content shown outside the app shell —
 * served from public URLs (/eula/<lang>, /policy/<lang>), no auth, no B24
 * iframe context. Does NOT depend on design-tokens.css; uses neutral system
 * colours so the page renders correctly even if it's bookmarked outside the
 * app environment.
 */

*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
    background: #fff; color: #111827;
}

.container {
    max-width: 1280px; margin-left: auto; margin-right: auto;
    padding-left: 1rem; padding-right: 1rem;
}
.row { display: flex; flex-wrap: wrap; margin-left: -.5rem; margin-right: -.5rem; }
.col-lg-10 { width: 100%; padding-left: .5rem; padding-right: .5rem; }
@media (min-width: 1024px) { .col-lg-10 { width: 83.333%; } }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.h2 { font-size: 1.5rem; font-weight: 700; }
.text-muted { color: #6b7280; }

/* ── Page chrome ─────────────────────────────────────────── */
.legal-header {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}
.legal-header-inner {
    display: flex;
    justify-content: center;
}
.legal-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

.legal-main {
    padding-bottom: 2rem;
}

.legal-footer {
    padding: 1.25rem 0;
    border-top: 1px solid #e9ecef;
    text-align: center;
}
.legal-footer a {
    color: #6b7280;
    font-size: .875rem;
    text-decoration: none;
    margin: 0 .75rem;
}

/* ── Content ─────────────────────────────────────────────── */
.legal-body { font-size: .9375rem; line-height: 1.7; color: #374151; }
.legal-body h2 { font-size: 1.05rem; font-weight: 600; color: #111827; margin-top: 1.75rem; margin-bottom: .625rem; }
.legal-body h3 { font-size: .9375rem; font-weight: 600; color: #111827; margin-top: 1.25rem; margin-bottom: .5rem; }
.legal-body p, .legal-body li { margin-bottom: .625rem; }
.legal-body ul { padding-left: 1.25rem; list-style: disc; }
.legal-body a  { color: #2563eb; }
