/* ── Meme-Generator Legal Notice ─────────────────────────────────────── */

.dp-legal-notice {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 1.5rem 0 0;
    padding: .75rem 1rem;
    background: rgba(0, 0, 0, .04);
    border-left: 3px solid rgba(0, 0, 0, .18);
    border-radius: 0 4px 4px 0;
    font-size: .75rem;
    line-height: 1.5;
    color: #666;
}

@media (prefers-color-scheme: dark) {
    .dp-legal-notice {
        background: rgba(255, 255, 255, .05);
        border-left-color: rgba(255, 255, 255, .2);
        color: #aaa;
    }
}

.dp-legal__icon {
    flex-shrink: 0;
    font-size: .95rem;
    line-height: 1.5;
    opacity: .6;
}

.dp-legal__body {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .75rem;
}

.dp-legal__item {
    white-space: normal;
}

.dp-legal__item::after {
    content: ' \B7'; /* middot */
    margin-left: .75rem;
    opacity: .4;
}

.dp-legal__item:last-child::after {
    content: none;
}

.dp-legal__item a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Galerie-Kontext: etwas kompakter */
.dp-legal-notice--gallery {
    margin-top: 1rem;
}

/* ── Datenschutz-Hinweis im Einreichungs-Formular ─────────────────────── */

.dp-meme-privacy-hint {
    font-size: .8rem;
    color: #888;
    margin-top: .5rem;
    line-height: 1.5;
}

.dp-meme-privacy-hint strong {
    color: #666;
}

/* ── Impressum-Abschnitt ──────────────────────────────────────────────── */

.dp-impressum-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.dp-impressum-section h3 {
    margin-bottom: .75rem;
}

@media (max-width: 600px) {
    .dp-legal__body {
        flex-direction: column;
        gap: .15rem;
    }

    .dp-legal__item::after {
        content: none;
    }
}
