
.video-list-items {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 16px;
}

@media screen and (max-width: 769px) {

    .video-list-items {
        justify-content: space-between;
    }
        .video-list-items .item-video a {
            display: flex;
            width: 100%;
            justify-content: center;
        }
}

@media screen and (max-width: 426px) {

    .video-list-items {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    }

        .video-list-items .item-video .aparatkimdi_video-main {
            width: 300px;
        }

        .video-list-items .item-video a {
            display: flex;
            width: 100%;
            justify-content: center;
        }
}

@media screen and (max-width: 321px) {

    .video-list-items .item-video .aparatkimdi_video-main {
        width: 280px;
    }

    .video-list-items .item-video a {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}
