.team_videos_block {
    margin: 150px auto;
}
.team_videos_block.bg_color {
    background: var(--tvb-bg-color);
    position: relative;
}
.team_videos_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--tvb-bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.team_videos_block .container {
    z-index: 99;
}

.team_video_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 50px;
}
.team_video_grid_item {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
    aspect-ratio: 1 / 1;
}
.team_video_media,
.team_video_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .team_video_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .team_video_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .team_video_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .team_video_grid {
        grid-template-columns: 1fr;
    }
}
