/* --------- 1) عطّل السبلاتش داخل صفحة المقال --------- */
body.page-article::before,
body.single-article::before,
body[class*="article"]::before {
  display: none !important;
}

/* تحسين عام للسبلاتش لو حاب تبقيه في الهوم فقط */
body::before {
  pointer-events: none;                /* لا يمنع النقر */
  animation-duration: 1s !important;   /* أسرع */
  animation-fill-mode: forwards;       /* يختفي تمامًا */
}

/* --------- 2) لا تغيّر bg-inherit داخل المقال --------- */
body.page-article .bg-inherit,
body.single-article .bg-inherit,
body[class*="article"] .bg-inherit {
  background-color: inherit !important;
}

/* --------- 3) ألغِ الديكورات المعتمدة على nth-child داخل المقال --------- */
body.page-article section:nth-child(12) .s-block__title::before,
body.page-article section:nth-child(13) .s-block__title::before,
body.single-article section:nth-child(12) .s-block__title::before,
body.single-article section:nth-child(13) .s-block__title::before,
body[class*="article"] section:nth-child(12) .s-block__title::before,
body[class*="article"] section:nth-child(13) .s-block__title::before {
  display: none !important;
}

/* --------- 4) أعد هوامش/ألوان اليوتيليتي داخل المقال إلى القيم الطبيعية --------- */
body[class*="article"] .md\:mb-0 {
  margin-bottom: 0 !important;
  color: inherit !important;
  font-weight: inherit !important;
}
body[class*="article"] .me-4 {
  margin-inline-start: 1rem !important;
  margin-inline-end: 1rem !important;
}
body[class*="article"] .py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
body[class*="article"] .lg\:gap-6 {
  gap: 1.5rem !important;  /* فقط الغاب، واترك الـdisplay للقالب */
}

/* --------- 5) تأكد من ظهور عناوين المقال بشكل طبيعي --------- */
body[class*="article"] h1,
body[class*="article"] h2,
body[class*="article"] h3 {
  -webkit-text-fill-color: initial !important;
  background: none !important;
  color: #222 !important;
}

/* نصوص المقال */
body[class*="article"] .prose,
body[class*="article"] .article-content,
body[class*="article"] .content {
  color: #222 !important;
  line-height: 1.8 !important;
}