.alexus-vk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Контейнер для видео */
.vk-video {
    width: 367px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
}

/* Пагинация */
.alexus-pagination {
    text-align: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.alexus-pagination a {
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.alexus-pagination a.active {
    background: #0073aa;
    color: #fff;
}

/* Адаптивные точки */
@media (max-width: 1200px) {
    .vk-video { width: 25%; }
}
@media (max-width: 992px) {
    .vk-video { width: 33.33%; }
}
@media (max-width: 768px) {
    .vk-video { width: 50%; }
}
@media (max-width: 576px) {
    .alexus-vk-grid {
        display: block;
    }
    .vk-video {
        width: 100% !important;
    height: 795px;
        margin-bottom: 15px;
    }
}
