/* Platzhalter fuer YouTube/Spotify-Embeds bis Consent erteilt ist */
.consent-embed {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    min-height: 220px;
    font-family: inherit;
    box-sizing: border-box;
    vertical-align: top;
    max-width: 100%;
    /* Zentrierung wenn Parent ein Flex-Container ist (Mosaic .ge-content) */
    align-self: center;
    /* Zentrierung wenn Parent text-align:center / Block-Kontext hat */
    margin-left: auto;
    margin-right: auto;
}
.consent-embed[data-provider="youtube"]  { background: #1a1a1a; }
.consent-embed[data-provider="spotify"]  { background: #121212; }

.consent-embed__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}
.consent-embed__text {
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0 0 0.9rem;
    max-width: 32rem;
    color: #c9c9c9;
}
.consent-embed__text a {
    color: #fff;
    text-decoration: underline;
}
.consent-embed__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.consent-embed__btn {
    background: #fff;
    color: #111;
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.consent-embed__btn--ghost {
    background: transparent;
    color: #fff;
}
.consent-embed__btn:hover { opacity: 0.85; }

/* Wenn Consent erteilt -> Container nimmt Hoehe des Iframe an */
.consent-embed.is-loaded {
    padding: 0;
    min-height: 0;
    background: transparent;
    border: none;
}
.consent-embed.is-loaded .consent-embed__title,
.consent-embed.is-loaded .consent-embed__text,
.consent-embed.is-loaded .consent-embed__buttons {
    display: none;
}

/* Statische Rechtsseiten (Impressum / Datenschutz) */
.legal-page main { padding-top: 7rem; }
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    color: #ddd;
}
.legal-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.04em;
}
.legal-content h2,
.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}
.legal-content p { line-height: 1.55; margin-bottom: 0.9rem; }
.legal-content a { color: #fff; text-decoration: underline; }
