/*
 * RTL Support — حلك التقنية
 * ووردبريس يُحمِّل هذا الملف تلقائياً عند تفعيل لغة RTL
 */

body {
  direction: rtl;
  text-align: right;
}

/* القوائم */
#primary-menu { flex-direction: row; }
#primary-menu .sub-menu { right: 0; left: auto; }

/* الشريط الجانبي */
.layout-with-sidebar { flex-direction: row-reverse; }

/* أسهم الأزرار */
.read-more-link i { transform: rotate(180deg); }

/* المقتطفات */
.entry-meta { flex-direction: row; }

/* التعليقات */
.comment-body { flex-direction: row; }

/* الصفحات */
.nav-previous { text-align: right; }
.nav-next     { text-align: left; }

/* الحقول */
input, textarea, select {
  direction: rtl;
  text-align: right;
}

/* الفوتر */
.footer-top { direction: rtl; }

/* blockquote */
.entry-content blockquote {
  border-right: 4px solid var(--accent);
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding-right: 24px;
  padding-left: 16px;
}

/* الجداول */
.entry-content table th,
.entry-content table td {
  text-align: right;
}

/* الترقيم */
.entry-content ol { padding-right: 25px; padding-left: 0; }
.entry-content ul { padding-right: 25px; padding-left: 0; }

/* التعريفات */
.comment-form { direction: rtl; }
.widget { direction: rtl; text-align: right; }
