/* Disable scroll snapping for legal pages */
html {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    padding-top: 80px;
    overflow-y: auto;
}
.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    color: #fff;
}
h1 {
    color: var(--color-ci-mint);
    margin-bottom: 30px;
}
h2 {
    color: var(--color-ci-pastel);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
}
p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* Multiline Plain-Text Felder aus content.json (z.B. Impressum-Adresse) */
[data-content="impressum-address"],
[data-content="impressum-responsible"] {
    white-space: pre-line;
}
a {
    color: var(--color-ci-mint);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}