/* ✅ نمایش عمودی ویدیو آپارات در قالب Listivo - نسخه نهایی با افکت */
.listivo-listing-section__embed--aparat {
  position: relative;
  width: 100% !important;
  max-width: 400px; /* عرض محدود برای حالت Reels */
  margin: 20px auto;
  padding-bottom: 30.77%; /* نسبت 9:16 برای ویدیو عمودی */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(0,0,0,0.1));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ✨ افکت hover مثل Reels */
.listivo-listing-section__embed--aparat:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* 🎥 خود iframe */
.listivo-listing-section__embed--aparat iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  object-fit: cover !important;
  border-radius: 20px;
}

/* 📱 حالت موبایل: تمام عرض صفحه */
@media (max-width: 768px) {
  .listivo-listing-section__embed--aparat {
    max-width: 100% !important;
    padding-bottom: 56.77%; /* حفظ نسبت عمودی */
    border-radius: 16px;
  }
}
