/* =====================================================
   VIDEO SECTION — Homepage explainer
   Shortcode: [ghost_homepage_video]
===================================================== */

.ga-video-section {
    padding: var(--ga-16) 0;
    background: var(--ga-bg);
}

.ga-video-section__title {
    font-family: var(--ga-font-serif);
    font-weight: 700;
    font-size: var(--ga-text-2xl);
    color: var(--ga-text);
    text-align: center;
    margin: 0 0 var(--ga-8);
}

.ga-video-section__embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--ga-radius-md);
    overflow: hidden;
    background: #000;
}

.ga-video-section__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .ga-video-section {
        padding: var(--ga-8) 0;
    }

    .ga-video-section__title {
        font-size: 1.5rem;
    }
}
