/* الحاوي الأب للثلاثة صناديق */
.flex.md\:gap-15.items-start.justify-center.flex-wrap.md\:flex-nowrap {
    display: flex !important;       /* صف أفقي دائم */
    justify-content: center;        /* توسيط الصناديق */
    gap: 12px;                      /* المسافة بين الصناديق */
    flex-wrap: nowrap !important;   /* لا يسمح بالانتقال لسطر ثاني */
}

/* كل صندوق داخل الصف */
.flex.md\:gap-15.items-start.justify-center.flex-wrap.md\:flex-nowrap > .text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 {
    width: calc(33.333% - 8px) !important; /* ثلاث أعمدة متساوية */
    box-sizing: border-box;
    margin-bottom: 0;
}

/* تصغير الدائرة والأيقونة */
.text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 .flex.items-center {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 4px;
}

.text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 i {
    font-size: 16px !important;
}

/* تصغير الرقم الكبير */
.text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 .stats-number {
    font-size: 20px !important;
    margin: 2px 0 !important;
}

/* تصغير العنوان */
.text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 .text-store-text-primary {
    font-size: 14px !important;
    margin: 2px 0 !important;
}

/* تصغير النصوص الثانوية */
.text-center.w-1\/2.md\:w-1\/4.mb-8.md\:mb-0 .text-store-text-secondary {
    font-size: 12px !important;
    margin: 0 !important;
}

/* إزالة أي تأثير على الجوال */
@media (max-width: 768px) {
    .flex.md\:gap-15.items-start.justify-center.flex-wrap.md\:flex-nowrap {
        flex-wrap: nowrap !important; /* الصف الأفقي يبقى دائمًا */
    }
}

.s-slider-block__display-all {
    display: inline-block; /* ليتم التحكم في الخط تحته */
    text-decoration: none; /* إزالة أي خط تلقائي */
    color: #000; /* اختر اللون الذي تريد للنص */
   /* font-weight: bold;*/
    position: relative; /* لإضافة الخط أسفل النص */
    padding-bottom: 4px; /* مسافة بسيطة بين النص والخط */
}

/* الخط الذهبي القصير أسفل النص */
.s-slider-block__display-all::after {
    content: "";
    display: block;
    width: 50%; /* نصف طول النص */
    height: 3px; /* سمك الخط */
    background-color: gold; /* اللون الذهبي */
    margin: 0 auto; /* ليكون في الوسط */
    margin-top: 2px; /* مسافة بسيطة بين النص والخط */
}

.s-slider-block__title-right h2 {
    font-size: 24px; /* تكبير الخط */
    font-weight: bold; /* لزيادة وضوحه */
    }

/*  هنا */