.bp-vdo {
    background-image: url('../../../images/event-types/c-vision/bg-video-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bp-vdo-inner { max-width: 1200px; margin: 0 auto; }

.bp-vdo-heading { text-align: center; margin-bottom: 3rem; }
.bp-vdo-eyebrow {
    color: var(--bp-fg);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.01em;
}
.bp-vdo-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--bp-fg);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.01em;
}
.bp-vdo-tagline {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 1rem;
}

.bp-vdo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.bp-vdo-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.bp-vdo-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.bp-vdo-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp-vdo-thumb-featured { aspect-ratio: 16 / 10; }
.bp-vdo-thumb-side { aspect-ratio: 16 / 9; }

.bp-vdo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    pointer-events: none;
    transition: transform 200ms ease, filter 200ms ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.bp-vdo-thumb:hover .bp-vdo-play {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
.bp-vdo-thumb-side .bp-vdo-play { width: 64px; height: 64px; }

.bp-vdo-thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    font-size: 1rem;
    font-weight: 500;
}
.bp-vdo-thumb-side .bp-vdo-thumb-title { font-size: 0.85rem; padding: 0.5rem 0.75rem; }

/* === COMING SOON placeholder card (uses video-placeholder.jpg + dark overlay) === */
.bp-vdo-placeholder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-vdo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 34, 0.8);
    pointer-events: none;
}
.bp-vdo-placeholder-label {
    position: relative;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

@media (max-width: 767px) {
    .bp-vdo {
        background-image: url('../../../images/event-types/c-vision/bg-video-mobile.jpg');
    }
    .bp-vdo-eyebrow { font-size: 1.15rem; }
    .bp-vdo-title { font-size: 1.75rem; }
    .bp-vdo-tagline { font-size: 0.9rem; }
    .bp-vdo-grid { grid-template-columns: 1fr; }
    .bp-vdo-side { grid-template-rows: auto auto; grid-template-columns: 1fr 1fr; }
    .bp-vdo-play { width: 64px; height: 64px; }
    .bp-vdo-thumb-side .bp-vdo-play { width: 52px; height: 52px; }
    .bp-vdo-placeholder-label { font-size: 1.4rem; }
}
