/* RTL Support for Farsi/Persian */

/* Global RTL */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Text alignment */
html[dir="rtl"] body,
html[dir="rtl"] .gh-content,
html[dir="rtl"] .gh-article,
html[dir="rtl"] .gh-card,
html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    direction: rtl;
    text-align: right;
}

/* Navigation - keep LTR for icons */
html[dir="rtl"] .gh-head-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .gh-head-actions {
    flex-direction: row-reverse;
}

/* Post cards */
html[dir="rtl"] .gh-card-wrapper {
    text-align: right;
}

html[dir="rtl"] .gh-card-author {
    direction: rtl;
}

/* Footer */
html[dir="rtl"] .gh-footer-bar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .gh-footer-menu {
    direction: rtl;
}

/* Article meta */
html[dir="rtl"] .gh-article-meta {
    flex-direction: row-reverse;
}

html[dir="rtl"] .gh-article-meta-wrapper {
    text-align: right;
    margin-right: 1rem;
    margin-left: 0;
}

/* Lists */
html[dir="rtl"] ul,
html[dir="rtl"] ol {
    padding-right: 1.5em;
    padding-left: 0;
}

/* Blockquote */
html[dir="rtl"] blockquote {
    border-right: 3px solid var(--ghost-accent-color);
    border-left: none;
    padding-right: 1.5em;
    padding-left: 0;
}

/* Keep code blocks LTR */
html[dir="rtl"] pre,
html[dir="rtl"] code {
    direction: ltr;
    text-align: left;
}

/* Search */
html[dir="rtl"] .gh-search-input {
    text-align: right;
}

/* Email subscription */
html[dir="rtl"] .gh-subscribe-input {
    text-align: right;
}

/* Email form inputs - centered placeholder */
html[dir="rtl"] .gh-form-input {
    text-align: center;
}

html[dir="rtl"] .gh-form-input::placeholder {
    text-align: center;
}

/* Pagination */
html[dir="rtl"] .gh-pagination {
    flex-direction: row-reverse;
}
