/* ============================================
   Embed consent placeholders (DSGVO two-click)
   ============================================ */

.consent-embed {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius-m, 12px);
    background-color: oklch(0.15 0 0);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.consent-embed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.consent-embed__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 460px;
    padding: 40px 24px;
    color: #fff;
}

.consent-embed__icon,
.consent-embed__inner > svg {
    width: 32px;
    height: 32px;
    color: var(--primary, oklch(0.62 0.18 142));
}

.consent-embed__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.consent-embed__text {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.consent-embed__text a {
    color: #fff;
    text-decoration: underline;
}

.consent-embed__btn {
    margin-top: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 999px;
    background: var(--primary, oklch(0.62 0.18 142));
    color: #fff;
    font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.consent-embed__btn:hover {
    background: var(--primary-d-1, color-mix(in oklch, var(--primary), black 20%));
    transform: translateY(-1px);
}

.consent-embed__note {
    margin: 4px 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Context: fullscreen video filler — cover the section, no radius */
.filler-video .consent-embed {
    position: absolute;
    inset: 0;
    z-index: 5;
    min-height: 0;
    border-radius: 0;
}

/* Context: social section — card-like block instead of the feed grid */
.social-slider-classic .consent-embed {
    min-height: 300px;
}
