/* ======================================
   VIDEO SECTION
====================================== */

.fg-video-section {
    background-color: #EEF0FF;
    padding: 60px 12px;
    width: 100% !important;
}

/* ======================================
   WRAPPER — ROUNDED CARD
====================================== */

.fg-video-wrapper {
    max-width: 1680px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    aspect-ratio: 16 / 9;
    position: relative;
}

/* ======================================
   POSTER
====================================== */

.fg-video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fg-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 10, 40, 0.45);
    pointer-events: none;
}

/* ======================================
   PLAY BUTTON
====================================== */

.fg-video-play-btn {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.25s ease;
}

.fg-video-play-btn:hover {
    transform: scale(1.08);
}

.fg-video-play-icon {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* ======================================
   VIDEO PLAYER
====================================== */

.fg-video-player {
    position: absolute;
    inset: 0;
}

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

/* ======================================
   RESPONSIVE
====================================== */

/* MD — 768px and below */
@media (max-width: 767.98px) {
    .fg-video-section {
        padding: 40px 20px;
    }

    .fg-video-play-icon {
        width: 72px;
        height: 72px;
    }
}

/* SM — 576px and below */
@media (max-width: 575.98px) {
    .fg-video-section {
        padding: 32px 16px;
    }

    .fg-video-wrapper {
        border-radius: 14px;
    }

    .fg-video-play-icon {
        width: 56px;
        height: 56px;
    }
}
