/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 24 2025 | 23:56:31 */
<style>
/* ==================================================================
  (النسخة النهائية) - متوافق مع جميع الشاشات
================================================================== */

/* --- متغيرات الألوان الأساسية --- */
:root {
    --primary-color: #2b5464;
    --secondary-color: #16c1f5;
    --text-color: #444444;
    --light-bg-color: #f8fcff;
    --border-color: #eaf1f4;
    --gradient-main: linear-gradient(to left, var(--secondary-color), var(--primary-color));
}

/* --- بداية الأنماط التي ستعمل على كل الشاشات --- */

.cz_post_content {
    font-family: 'Almarai', sans-serif !important; /* إضافة !important لفرض الخط */
    line-height: 1.8;
    color: var(--text-color);
}

/* العناوين الرئيسية (H2) */
.cz_post_content h2 {
    font-family: 'Almarai', sans-serif !important;
    color: var(--primary-color);
    font-size: 2.1em;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid;
    border-image: var(--gradient-main) 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.cz_post_content h2::before {
    content: '\f47e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    margin-left: 15px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.cz_post_content h2:hover::before {
    transform: scale(1.1) rotate(-5deg);
}

/* العناوين الفرعية (H3) */
.cz_post_content h3 {
    font-family: 'Almarai', sans-serif !important;
    color: var(--primary-color);
    font-size: 1.7em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 12px 20px;
    border-right: 5px solid var(--secondary-color);
    background-color: var(--light-bg-color);
    border-radius: 8px 0 0 8px;
    box-shadow: 2px 2px 10px rgba(43, 84, 100, 0.08);
    transition: all 0.3s ease-in-out;
}

.cz_post_content h3:hover {
    border-right-width: 8px;
    box-shadow: 4px 4px 15px rgba(43, 84, 100, 0.12);
    transform: translateX(-5px);
}

/* الاقتباسات */
.cz_post_content blockquote {
    background: linear-gradient(135deg, var(--light-bg-color) 0%, #ffffff 100%);
    border-right: 5px solid;
    border-image: var(--gradient-main) 1;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(43, 84, 100, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cz_post_content blockquote:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(43, 84, 100, 0.15);
}

.cz_post_content blockquote p {
    font-size: 1.1em;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0 !important;
}

.cz_post_content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    font-size: 3.5em;
    position: absolute;
    top: 15px;
    left: 20px;
}

/* الروابط */
.cz_post_content a {
    color: var(--secondary-color) !important;
    font-weight: bold;
    text-decoration: none !important;
    position: relative;
    padding-bottom: 2px;
    background-image: linear-gradient(var(--secondary-color), var(--secondary-color));
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s ease, color .3s ease;
}

.cz_post_content a:hover {
    color: var(--primary-color) !important;
    background-size: 100% 2px;
}

/* --- 🔧 بداية التعديلات الخاصة بالشاشات الصغيرة --- */

/* للأجهزة اللوحية وما هو أصغر (حتى 1024px) */
@media screen and (max-width: 1024px) {
    .cz_post_content h2 {
        font-size: 1.8em; /* تصغير حجم الخط قليلًا */
    }
    .cz_post_content h3 {
        font-size: 1.5em; /* تصغير حجم الخط قليلًا */
    }
}

/* للهواتف وما هو أصغر (حتى 767px) */
@media screen and (max-width: 767px) {
    .cz_post_content h2 {
        font-size: 1.6em; /* تصغير إضافي ليناسب الموبايل */
        margin-top: 40px;
    }
    
    .cz_post_content h2::before {
       margin-left: 10px;
       font-size: 0.8em;
    }

    .cz_post_content h3 {
        font-size: 1.3em;
        padding: 10px 15px;
    }
    
    .cz_post_content h3:hover {
        transform: translateX(0); /* إلغاء الحركة على الموبايل لتحسين الأداء */
    }

    .cz_post_content blockquote {
        padding: 20px;
    }
    
    .cz_post_content blockquote::before {
      display: none; /* إخفاء أيقونة الاقتباس الكبيرة لتوفير مساحة */
    }
}

</style>