/*==================================================
02 VIDEO
==================================================*/

.cl-video{

    background:transparent;

    padding:35px 0;

}

.cl-video-header{

    width:100%;

    max-width:1200px;

    margin:0 auto 35px;

    text-align:center;

}

.cl-video-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:8px 18px;

    background:#ffe9ee;

    color:var(--cl-primary);

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.cl-video-title{

    width:100%;

    max-width:1100px;

    margin:0 auto 14px;

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    color:var(--cl-text);

}

.cl-video-subtitle{

    width:100%;

    max-width:820px;

    margin:0 auto;

    font-size:18px;

    line-height:1.8;

}

.cl-video-wrapper{

    width:100%;

    max-width:1100px;

    margin:0 auto;

}

.cl-video-frame{

    position:relative;

    width:100%;

    padding-bottom:56.25%;

    height:0;

    overflow:hidden;

    border-radius:26px;

    background:#000;

    box-shadow:
        0 25px 70px rgba(0,0,0,.12);

}

.cl-video-frame iframe{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    border:0;

}

/*==============================
Mobile
==============================*/

@media(max-width:991px){

    .cl-video{

    padding:25px 0;

}

    .cl-video-title{

        font-size:42px;

    }

    .cl-video-subtitle{

        font-size:18px;

    }

}

@media(max-width:767px){

    .cl-video{

    padding:15px 0;

}

    .cl-video-header{

        margin-bottom:30px;

    }

    .cl-video-title{

    font-size:30px;

    line-height:1.25;

}

    .cl-video-subtitle{

        font-size:16px;

    }

    .cl-video-frame{

    border-radius:18px;

}

}