/* ── Video Embed ─────────────────────────────────────────── */
.video-section {
    padding: 80px 0;
}

.video-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-embed__thumb {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-embed__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 80px;
    background: var(--PRO-Orange, #FC7A00);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.video-embed__play:hover {
    background: var(--PRO-Orange-Hover, #DB6600);
}

.video-embed__play svg {
    width: 28.468px;
    height: 32px;
    flex-shrink: 0;
}

/* Tablet / Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-embed__play {
        width: 60px;
        height: 60px;
    }

    .video-embed__play svg {
        width: 22px;
        height: 24px;
    }
}