/* ════════════════════════════════
   legal.css – Impressum & ähnliche Seiten
════════════════════════════════ */

.legal-section {
    padding: 64px 0 96px;
    background: white;
}

.legal-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.legal-header {
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}
.legal-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.legal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    color: var(--brand-orange);
}
.legal-block p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--text-dark); font-weight: 600; }
.legal-block a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 500;
}
.legal-block a:hover { text-decoration: underline; }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.legal-table tr {
    border-bottom: 1px solid var(--border);
}
.legal-table tr:last-child { border-bottom: none; }
.legal-table td {
    padding: 9px 0;
    color: var(--text-muted);
    vertical-align: top;
}
.legal-table td:first-child {
    width: 200px;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 20px;
}
.legal-table a {
    color: var(--brand-orange);
    text-decoration: none;
}
.legal-table a:hover { text-decoration: underline; }

.legal-meta {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-faint);
}
.legal-meta p { margin: 0; }

@media (max-width: 768px) {
    .legal-header h1 { font-size: 1.7rem; }
    .legal-table td:first-child { width: 140px; }
}
