/* Add custom CSS styles below */ 


.s-block:nth-of-type(1) {
    margin-top: 0 !important;
}

.s-block--photos-slider .s-slider-block__title-nav {
    display: none !important;
}

.s-block--photos-slider * {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.s-block--photos-slider .swiper-slide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}


footer .m-auto.flex.justify-start.max-w-\[1300px\].items-center.flex-wrap.max-lg\:justify-start.gap-9.md\:gap-6.px-5.pb-4,
footer .m-auto.flex.justify-start.max-w-\[1300px\].items-center.flex-wrap.max-lg\:justify-start.gap-9.md\:gap-6.px-5.pb-4 * {
  color: #fff !important;
}

.footer-margin span,
.footer-margin span * {
  color: #fff !important;
}

.articles .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 أعمدة */
  gap: 10px; /* مسافة بين الكروت */
}
/* الموبايل - أقل من 640px */
@media (max-width: 640px) {
  .articles .item {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
}

/* التابلت - أعمدة 2 */
@media (min-width: 641px) and (max-width: 1023px) {
  .articles .item {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* الديسكتوب - أعمدة 3 */
@media (min-width: 1024px) {
  .articles .item {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
/* تصغير خط المقالات في الموبايل */
@media (max-width: 640px) {
  .articles .item h2 {
    font-size: 14px !important; /* العنوان */
    line-height: 20px !important;
  }

  .articles .item .desc_contant_blog span {
    font-size: 12px !important; /* الوصف */
    line-height: 18px !important;
  }

  .articles .item time {
    font-size: 11px !important; /* التاريخ */
  }
}
#app > div.flex.flex-col.min-h-full.app-inner.overflow-hidden.relative 
  > section.g_cat.\!mb-\[60px\].md\:\!mb-\[110px\] 
  > div > div.grid.grid-cols-3.gap-5.justify-center {
    display: flex !important;
    justify-content: center !important; /* توسيط العناصر */
    gap: 20px; /* مسافة بين العناصر */
}