/* ── Legal Pages (Datenschutz & Impressum) ── */

.legal {
    padding: 10rem 0 4rem;
}

.legal__container {
    max-width: 72rem;
    margin: 0 auto;
}

.legal__back {
    display: inline-block;
    font-size: .875rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
    opacity: .7;
    transition: opacity .2s;
}

.legal__back:hover {
    opacity: 1;
}

.legal h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal__lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* ── Content ── */
.legal__content h2 {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    color: var(--text);
}

.legal__content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal__content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.legal__content a:hover {
    color: var(--accent-bright);
}

.legal__content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.legal__content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.legal__content strong {
    color: var(--text);
    font-weight: 600;
}

.legal__date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: .875rem;
    color: var(--text-muted);
    opacity: .6;
}

/* ── Responsive ── */
@media (min-width: 640px) {
    .legal {
        padding-top: 12rem;
    }
}

@media (min-width: 900px) {
    .legal__content {
        columns: 1;
    }
}
