.va-video-section {
    padding: 0 40px;
    background: #ffffff;
}

/* ── Container (scoped fallback) ─────────────────────── */
.va-video-section .va-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Eyebrow & lead ──────────────────────────────────── */
.va-video-eyebrow {
    font-size: 22px;
    font-weight: 600;
    color: #FF551A;
    margin: 0 0 12px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-video-lead {
    font-size: 18px;
    color: #000022;
    margin: 0 0 32px;
    line-height: 1.6;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Embedded video ──────────────────────────────────── */
.va-video-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
    background: #0D1117;
    aspect-ratio: 16 / 9;
}

/* Make the oEmbed iframe fill the wrapper */
.va-video-embed iframe,
.va-video-embed embed,
.va-video-embed object {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ── Below-video two-column grid ─────────────────────── */
.va-video-below {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Feature bullet list ─────────────────────────────── */
.va-video-features-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF551A;
    margin: 0 0 16px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-features-body ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.va-features-body ol {
    padding-left: 18px;
    margin: 0;
}

.va-features-body ul li::marker {
    color: #FF551A;
}

.va-features-body li {
    font-size: 18px;
    line-height: 1.6;
    color: #000022;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-features-body li:last-child {
    margin-bottom: 0;
}

.va-features-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #000022;
    margin: 0 0 8px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-features-body p:last-child {
    margin-bottom: 0;
}

/* ── Speaker grid ────────────────────────────────────── */
.va-speakers-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF551A;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-speakers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
}

.va-speaker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.va-speaker-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.va-speaker-name {
    font-size: 14px;
    font-weight: 600;
    color: #000022;
    margin: 0 0 3px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.va-speaker-desc {
    font-size: 13px;
    color: #555577;
    margin: 0;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 768px) {
    .va-video-section {
        padding: 0 0 48px;
    }

    .va-video-section .va-container {
        padding: 0 20px;
    }

    .va-video-below {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .va-speakers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .va-speaker {
        flex-direction: column;
        gap: 8px;
    }

    .va-speaker-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .va-speaker-desc {
        color: #3051E6;
    }

    .va-features-body li {
        margin-bottom: 16px;
    }

    .va-video-eyebrow,
    .va-video-features-title,
    .va-speakers-title {
        font-size: 22px !important;
    }

    .va-video-lead,
    .va-features-body li,
    .va-features-body p,
    .va-speaker-name,
    .va-speaker-desc {
        font-size: 18px !important;
    }
}
