
/* ==========================================================================
   إجبار تنسيقات المقالات (تعديل شامل للألوان والخطوط)
   ========================================================================== */

/* 1. استهداف جميع حاويات المحتوى المحتملة */
.entry-content, .post-content, .page-content, article, .prose {
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.8 !important;
    font-size: 18px !important;
}

/* 2. الفقرات والنصوص (اللون الرمادي الغامق جداً) */
.entry-content p, .entry-content li, .entry-content span,
.post-content p, .post-content li,
article p, article li,
.prose p, .prose li {
    color: var(--oryx-hex-1f2937) !important; /* رمادي غامق جداً للقراءة المريحة */
}

/* 3. العناوين (اللون الأخضر الغامق) */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4,
.post-content h1, .post-content h2,
article h1, article h2,
.prose h1, .prose h2, .prose h3 {
    color: var(--oryx-hex-064e3b) !important; /* أخضر زمردي غامق (Oryx Dark Green) */
    font-weight: 800 !important;
    margin-top: 1.5em !important;
    margin-bottom: 0.8em !important;
}

/* تنسيق إضافي لتمييز العناوين الفرعية بخط تحتها */
.entry-content h2, .prose h2 {
    border-bottom: 2px solid var(--oryx-hex-e8f5e9) !important;
    padding-bottom: 10px !important;
}

/* 4. تنسيق الصور (إطار وظل) */
.entry-content img, .prose img, article img {
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    margin: 2rem auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important; /* لضمان توسط الصورة */
}

/* 5. الروابط (أخضر فاتح قليلاً للتمييز) */
.entry-content a, .prose a, article a {
    color: var(--oryx-hex-059669) !important;
    text-decoration: none !important;
    border-bottom: 1px dotted var(--oryx-hex-059669) !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
}

.entry-content a:hover, .prose a:hover {
    background-color: var(--oryx-hex-ecfdf5) !important; /* خلفية خضراء باهتة جداً عند اللمس */
    color: var(--oryx-hex-064e3b) !important;
}

/* 6. إصلاح القوائم النقطية (Bullet Points) */
.entry-content ul, .prose ul {
    list-style-type: disc !important;
    padding-right: 2rem !important; /* مسافة للغة العربية */
    margin-bottom: 1.5rem !important;
}

.entry-content ol, .prose ol {
    list-style-type: decimal !important;
    padding-right: 2rem !important;
    margin-bottom: 1.5rem !important;
}

