:root {
    --primary-color: #ee485f;
}

body:lang(en) *:not(:lang(en)),
body:lang(ar) *:not(:lang(ar)) {
    display: none !important;
    
}

body:lang(en) * {
    direction: ltr !important;  
}

body:lang(ar) * {
    direction: rtl !important; 
}

.blog-text { 
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;  
}