/* ✅ شبكة أفقيّة أو Grid للفيديوهات */
.video-news-row.layout-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
}

.video-news-row.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    padding: 10px 0;
}

/* ✅ كل فيديو مربع صغير (تغيير مهم هنا) */
.video-news-card,
.video-slider .swiper-slide .video-card {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* يحافظ على نسبة 16:9 */
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* ✅ iframe داخل المربع */
.video-news-card iframe,
.video-slider .swiper-slide .video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* ✅ تحسين المظهر */
.video-card:hover { transform: scale(1.05); }

.video-slider { margin: 20px 0; }
.swiper-button-next, .swiper-button-prev { color: #fff; }
.swiper-pagination-bullet { background: #fff; }