/* ============================================================
   birgit theme — legal.css — Impressum / Datenschutz
   Part of the conditional-partial split of the original single
   stylesheet. Rules moved verbatim; cascade preserved via enqueue order.
   ============================================================ */

/* ============================================================
   LEGAL PAGES  (Impressum, Datenschutzerklärung)
   ============================================================ */
/* Short centred accent rule under the page title */
.page-header__accent {
    width: 56px;
    height: 2px;
    background: var(--color-green-600);
    border: 0;
    margin: 1.25rem auto 0;
}

.legal {
    background: var(--color-cream-50);
    padding: 1rem 1.5rem 5rem;
    display: flex;
    justify-content: center;
}
.legal__inner {
    width: 100%;
    max-width: 760px;
}

/* Bilingual placeholder notice box */
.legal__notice {
    background: var(--color-cream-100);
    border-left: 3px solid var(--color-green-600);
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    margin: 0 0 3rem;
}
.legal__notice p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-stone-800);
    margin: 0 0 0.85rem;
}
.legal__notice p:last-child { margin-bottom: 0; }

/* Section headings with a small green accent underline */
.legal__heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-navy-800);
    margin: 2.75rem 0 0.4rem;
}
.legal__heading:first-of-type { margin-top: 0; }
.legal__heading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-green-600);
    margin-top: 0.65rem;
}

.legal__para {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-stone-800);
    margin: 1rem 0;
}
.legal__para a {
    color: var(--color-navy-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal__para a:hover { color: var(--color-navy-800); }

.legal__list {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-stone-800);
    margin: 1rem 0;
    padding-left: 1.25rem;
}
.legal__list li { margin: 0.4rem 0; }

