.store-footer__inner{
background-image: url("https://i.ibb.co/m5tz5Tn/snapedit-1710746987864-copy.png" );
 background-position:center left;
  background-size: auto 40%;
  background-repeat:  no-repeat;
}

/* ✅ توحيد عرض صور المقالات داخل صفحة المقال */
img.h-80.mb-10.w-full.object-cover.rounded-md {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important; /* تملأ الإطار في الديسكتوب */
    border-radius: 12px !important;
    display: block;
    max-height: 450px;
}

/* 📱 تحسين العرض على الموبايل */
@media (max-width: 768px) {
  img.h-80.mb-10.w-full.object-cover.rounded-md {
      width: 100% !important;
      height: auto !important;
      object-fit: contain !important; /* تُظهر الصورة كاملة على الموبايل */
      max-height: none !important;
      border-radius: 10px !important;
  }
}

/* 🧩 ضبط التباعد أسفل الصورة لتناسب الفوتر */
img.h-80.mb-10.w-full.object-cover.rounded-md {
    margin-bottom: 20px !important;
}