/**
 * ملف الأنماط لاتجاه RTL
 */

body {
    direction: rtl;
    text-align: right;
    unicode-bidi: embed;
}

/* الهيدر */
.header-content {
    flex-direction: row;
}

.logo {
    flex-direction: row;
}

/* القوائم */
.primary-menu {
    flex-direction: row;
}

.dropdown-menu {
    right: auto;
    left: 0;
    text-align: right;
}

/* البحث */
.search-button {
    right: 10px;
    left: auto;
}

.search-box input {
    padding: 12px 20px 12px 45px;
}

/* السلايدر */
.slider-controls {
    flex-direction: row-reverse;
}

/* المقالات */
.featured-article::before {
    right: 15px;
    left: auto;
}

.article-card::before {
    right: 15px;
    left: auto;
}

.read-more i {
    transform: rotate(180deg);
}

/* الفوتر */
.footer-column h4::after {
    right: auto;
    left: 0;
}

/* تصحيحات للعناصر العامة */
.sidebar {
    text-align: right;
}

.article-content {
    text-align: right;
}

.featured-article-content {
    text-align: right;
}

.slide-content {
    text-align: right;
}

/* التجاوب */
@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
    }
}