/* ✅ كارت الفيديو */
.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* ✅ فيديو داخل كارت بنسبة ثابتة */
.video-card .video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.video-card .video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ✅ محتوى الكارت */
.video-card .video-content {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-card .video-name {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.video-card .video-country {
  font-size: 13px;
  margin: 0;
  color: #777;
}

/* ✅ Grid Responsive */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ✅ تابلت */
@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ موبايل */
@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
