/* Lanka Embed — embed.css */

.lanka-embed {
    margin: 1.5rem 0;
    width: 100%;
}

/* ── Відео (16:9 або 9:16) ── */
.lanka-embed__ratio {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.lanka-embed__ratio iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* TikTok / Shorts — вузький контейнер по центру */
.lanka-embed--tiktok .lanka-embed__ratio {
    max-width: 340px;
    margin: 0 auto;
}

/* ── Пости (Telegram, Facebook post, Instagram, Twitter) ── */
.lanka-embed--post {
    display: flex;
    justify-content: center;
}

.lanka-embed--post > * {
    max-width: 560px;
    width: 100%;
}

/* Facebook iframe пост */
.lanka-embed-fb-post iframe {
    width: 100%;
    min-height: 200px;
    border-radius: 8px;
    border: none;
}

/* ── Помилка ── */
.lanka-embed-error {
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: #721c24;
}

/* ── Dark mode ── */
@media (prefers-color-scheme: dark) {
    .lanka-embed__ratio {
        background: #1a1a1a;
    }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .lanka-embed--tiktok .lanka-embed__ratio {
        max-width: 100%;
    }
}
