/* RTL Support for Hebrew */

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

/* RTL Navigation */
[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    order: -1;
}

/* RTL Logo */
[dir="rtl"] .logo a {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo-icon {
    margin-left: 1rem;
    margin-right: 0;
}

/* RTL Language Links */
[dir="rtl"] .language-links {
    flex-direction: row-reverse;
}

/* RTL Content */
[dir="rtl"] .post-content {
    text-align: right;
}

[dir="rtl"] .post-content h1,
[dir="rtl"] .post-content h2,
[dir="rtl"] .post-content h3,
[dir="rtl"] .post-content h4,
[dir="rtl"] .post-content h5,
[dir="rtl"] .post-content h6 {
    text-align: right;
}

/* RTL Lists */
[dir="rtl"] .post-content ul,
[dir="rtl"] .post-content ol {
    padding-inline-start: 2rem; /* Use logical property */
}

[dir="rtl"] .post-content li {
    text-align: right;
}

/* RTL Meta Information */
[dir="rtl"] .post-meta {
    text-align: right;
}

[dir="rtl"] .post-content blockquote {
    border-right: 4px solid var(--color-primary);
    padding-right: 1.5rem;
    border-left: 0;
    padding-left: 0;
}

[dir="rtl"] .post-meta span {
    margin-inline-start: 1rem;
    margin-inline-end: 0;
}

/* RTL Tags */
[dir="rtl"] .post-tags {
    text-align: right;
}

[dir="rtl"] .tag {
    margin-inline-start: 0.5rem;
    margin-inline-end: 0;
}

/* RTL Hero Section */
[dir="rtl"] .hero {
    text-align: center;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .hero .subtitle {
    text-align: center;
}

/* RTL Blog Intro */
[dir="rtl"] .blog-intro h2,
[dir="rtl"] .blog-intro p {
    text-align: center;
}

/* RTL Featured Posts */
[dir="rtl"] .featured-posts h2 {
    text-align: center;
}

/* RTL Breadcrumbs */
[dir="rtl"] .breadcrumb ol {
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-right: 0.5rem;
    margin-left: 0;
}

[dir="rtl"] .breadcrumb a {
    text-align: right;
}

[dir="rtl"] .breadcrumb [aria-current="page"] {
    text-align: right;
}

/* RTL CTA Section */
[dir="rtl"] .post-content h3 {
    text-align: right;
}

[dir="rtl"] .post-content p {
    text-align: right;
}

[dir="rtl"] .read-more {
    text-align: right;
}

/* RTL Footer */
[dir="rtl"] footer {
    text-align: center;
}

/* RTL Responsive */
@media (max-width: 768px) {
    [dir="rtl"] .nav-links {
        flex-direction: column;
    }
    
    [dir="rtl"] .language-switcher {
        order: 0;
        margin-top: 1rem;
    }
} 