/* إزالة الفراغات البيضاء من الصور بشكل قطعي */
.smart-banner-container {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  line-height: 0;
}

.smart-banner-container img {
  width: 100%;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

/* إعدادات التبديل التلقائي بين الهاتف والكمبيوتر */
.img-mobile { display: none; }

@media (max-width: 768px) {
  .img-desktop { display: none; }
  .img-mobile { display: block; }
}

/* حل إضافي احتياطي لأي فواصل متبقية في المنصة */
div:has(> .smart-banner-container) {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
}