/* Arabic font */
.font-arabic {
    font-family: 'Noto Sans Arabic', sans-serif;
}

/* Article body prose styles (since Tailwind prose plugin not loaded via CDN by default) */
.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}
.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e3a5f;
}
.article-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.article-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-content blockquote {
    border-left: 4px solid #c9a84c;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #4b5563;
    font-style: italic;
}
[dir="rtl"] .article-content blockquote {
    border-left: none;
    border-right: 4px solid #c9a84c;
    padding-left: 0;
    padding-right: 1rem;
}

/* Sidebar RTL/LTR handled inline; smooth transition */
#sidebar { will-change: transform; }

/* Card image zoom clip */
.group:hover .group-hover\:scale-105 { overflow: hidden; }

/* Line clamp fallback */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
