/* ============================================================
   legal.css — Impressum & Datenschutz
   Part of the Praxis Dr. Kretzschmar theme. Rules moved verbatim
   from the original single style.css (see CLAUDE.md).
   ============================================================ */

/* ============================================================ */
/* ---------- Legal pages (Impressum & Datenschutz) ---------- */
/* Append this block to the bottom of style.css                 */
/* ============================================================ */
.legal {
    background: var(--color-green-50);
    padding: 72px 24px 88px;
}

.legal-inner {
    max-width: 820px;
    margin: 0 auto;
}

/* Bilingual placeholder notice at the top of the page */
.legal-note {
    background: #ffffff;
    border: 1px solid var(--color-green-200);
    border-left: 3px solid var(--color-accent-600);
    border-radius: 6px;
    padding: 18px 22px;
    margin-bottom: 48px;
}

.legal-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-ink-900);
    opacity: 1;
    margin-bottom: 0;
}

.legal-note p + p {
    margin-top: 10px;
}

.legal h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-ink-900);
    margin: 44px 0 8px;
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal-divider {
    width: 48px;
    height: 2px;
    background: var(--color-accent-600);
    margin-bottom: 22px;
}

.legal h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-ink-900);
    margin: 26px 0 8px;
}

.legal p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-ink-900);
    opacity: 0.9;
    margin-bottom: 16px;
}

.legal address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-ink-900);
    opacity: 0.9;
    margin-bottom: 16px;
}

.legal ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.legal li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-ink-900);
    opacity: 0.9;
    margin-bottom: 6px;
}

.legal a {
    color: var(--color-accent-600);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .legal {
        padding: 52px 20px 64px;
    }
    .legal h2 {
        font-size: 22px;
    }
}
