/* ── Video Teaser Plugin Styles v1.2 ── */

html, body {
    background: #fff;
}

.vtp-wrapper {
    max-width: 760px;
    margin: 16px auto;
    padding: 16px 24px 52px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    text-align: center;
    background: #fff;
}

/* ── Top badge ── */
.vtp-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f0;
    border: 1.5px solid #f5c0c0;
    color: #b94a48;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
}

/* ── Title ── */
.vtp-title {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 22px;
    color: #111111;
    letter-spacing: -0.5px;
}

/* ── Video wrapper ── */
.vtp-video-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    margin-bottom: 26px;
    position: relative;
    aspect-ratio: 16 / 9;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.vtp-video,
.vtp-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ── Buttons row ── */
.vtp-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}

.vtp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity .2s, transform .15s;
    min-width: 220px;
}

.vtp-btn:hover {
    opacity: .88;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.vtp-btn--dark {
    background: #111111;
    color: #ffffff !important;
}

.vtp-btn--blue {
    background: #2563eb;
    color: #ffffff !important;
}

/* ── Stats row ── */
.vtp-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    justify-content: center;
    align-items: center;
    font-size: 13.5px;
    color: #444;
    margin-bottom: 18px;
}

.vtp-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* ── Urgency badge ── */
.vtp-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffceb;
    border: 1.5px solid #e8d44d;
    color: #7a5c00;
    border-radius: 999px;
    padding: 9px 22px;
    font-size: 13.5px;
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .vtp-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .vtp-btn {
        min-width: unset;
        width: 100%;
    }
}

/* ── Ads top ── */
.vtp-ads-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: #fff;
}

.vtp-ads-top + .vtp-wrapper {
    padding-top: 16px;
}
