.videos_title{
    margin: 0 0 40px 0;
}
.videos-slider-wrapper{
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    position: relative;
}
.videos-slider-nav-btn{
    position: absolute;
    aspect-ratio: auto;
    border: none;
    background: #FAFAFC;
    height: 55px;
    &:before{
        border-color: black;
    }
}
.videos-slider-nav-btn.prev{
    justify-self: flex-start;
    translate: -50% 0;
}
.videos-slider-nav-btn.next{
    justify-self: flex-end;
    translate: 50% 0;
}
.videos_grid{

}
.videos_load{
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 40px auto 0 auto;
    padding: 0;
    background: none;
}
.videos_load :where(img, svg){
    width: 13px;
    flex-shrink: 0;
    height: auto;
    object-fit: contain;
    transform: rotate(90deg);
}
.video-item{
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ECECEC;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 195px auto 1fr;
    align-items: flex-start;
    background: #FAFAFC;
    font-size: 18px;
    height: auto;
}
.video-item>*{
    pointer-events: none;
}
.video-item_img{
    grid-area: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-item_play{
    grid-area: 1/1;
    width: 90px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}
.video-item_play :where(img, svg){
    width: 33%;
    height: auto;
    object-fit: contain;
    transform: translate(10%, 0);
}
.video-item_play path{
    fill: #5B758E;
}
.video-item_content{
    padding: 12px;
}
.video-item_title{
    font-weight: 700;
    line-height: 1.2em;
}
.video-item_txt{
    margin: 5px 0 0 0;
    line-height: 1.2em;
}

@media (max-width: 1024px) {
    .videos_title{
        margin: 0 0 32px 0;
    }
    .videos-slider-nav-btn{
        display: none;
    }
}

@media (max-width: 768px) {
    .videos_grid{
        gap: 20px;
    }
    .video-item{
        grid-template-rows: 170px auto 1fr;
        font-size: 14px;
    }
    .video-item_play{
        width: 55px;
    }
}

@media(max-width: 480px){
    .videos_grid{
        grid-template-columns: 100%;
    }
}