/* =============================================================
   round360 | subpage.css
   Gemeinsames Layout für Impressum & Datenschutz
   ============================================================= */

/* ── Seitenbereich ───────────────────────────────────────────── */
.subpage-main {
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 5rem;
    background: var(--bg);
}

.subpage-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Seitentitel ─────────────────────────────────────────────── */
.subpage-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.subpage-accent {
    width: 2.75rem;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 3rem;
}

/* ── Rechtliche Sektionen ────────────────────────────────────── */
.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 0.875rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
    color: var(--blue);
    text-decoration: none;
    transition: opacity 0.2s;
}
.legal-section a:hover { opacity: 0.75; }

.legal-section strong { color: var(--light); }
