/* ==================  إعدادات عامة ================== */
.report-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    text-align: left;   /* ← اجعل النص على اليسار */
    direction: ltr;     /* ← اجعل اتجاه النص من اليسار لليمين */
}

.report-article {
    line-height: 1.9;
    color: #333;
    text-align: left;   /* ← اجعل النص على اليسار */
    direction: ltr;     /* ← اجعل اتجاه النص من اليسار لليمين */
    font-size: 1.1rem;
}

/* إضافة جديدة: اجعل article و .post-content من اليسار لليمين */
article, .post-content {
    direction: ltr;       /* اجعل اتجاه النص من اليسار لليمين */
    text-align: left;     /* اجعل محاذاة النص لليسار */
}

/* ==================  العناوين ================== */
.report-article h1 {
    font-size: 2.3rem;
    color: #2c5530;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.35;
}

.report-article h2 {
    font-size: 1.75rem;
    color: #3d6e48;
    margin: 4rem 0 1.8rem;
    font-weight: 700;
    border-right: 4px solid #48c78e;
    padding-right: 15px;
}

.report-article h3 {
    font-size: 1.4rem;
    color: #4f8c63;
    margin: 3rem 0 1.4rem;
    font-weight: 600;
}

.report-article h4 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #628c70;
    font-weight: 500;
}

/* ==================  فقرات ================== */
.report-article p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

/* ==================  القوائم المحسنة ================== */
.report-article ul,
.report-article ol {
    margin-bottom: 2.8rem;
    padding-left: 2.2rem;   /* ← اجعل القوائم من اليسار */
}

.report-article ul li {
    list-style: none;
    position: relative;
    padding-left: 1.6rem;   /* ← العلامة على يسار النص */
}

.report-article ul li::before {
    content: "✔";
    position: absolute;
    left: 0;                /* ← اجعل العلامة على اليسار */
    right: auto;
    top: 3px;
    font-size: 1rem;
    color: #48c78e;
    font-weight: bold;
}

.report-article ol li {
    margin-bottom: 1.2rem;
    list-style-position: inside; /* ← أرقام القوائم على يسار السطر */
}

/* ==================  صور ================== */
.report-article img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 2.8rem auto;
    display: block;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

/* تعليق تحت الصور */
.report-img-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* ==================  اقتباس ================== */
.report-article blockquote {
    background: #f7faf8;
    border-right: 4px solid #48c78e;
    padding: 1.6rem 2rem 1.6rem 1rem;
    margin: 2.8rem 0;
    border-radius: 8px;
    font-style: italic;
}

/* ==================  صندوق ملاحظة ================== */
.note-box {
    background: #fffcee;
    border-right: 4px solid #f4d06f;
    padding: 1.3rem 1.8rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    font-size: 1rem;
    color: #665c34;
}

/* ==================  CTA الخفيف المحسن ================== */
.soft-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.soft-cta p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.soft-cta-button {
    display: inline-block;
    background: #9a88c6;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.soft-cta-button:hover {
    background: #7c6aa7;
    transform: translateY(-1px);
}

/* ==================  CTA القوي المعدل ================== */
.strong-cta {
    margin: 4rem 0 2.5rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: #faf9ff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(120, 120, 170, 0.15);
}

.strong-cta h2 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.strong-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: #555;
}

.strong-cta-button {
    display: inline-block;
    background: #8a7aac;
    color: white;
    padding: 1rem 2.4rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 18px rgba(138, 122, 172, 0.3);
    margin-bottom: 0.5rem;
}

.strong-cta-button:hover {
    background: #6d5d8f;
    transform: translateY(-3px);
}

.strong-cta small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #666;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* ==================  تقارير مقترحة ================== */
.next-reads {
    margin-top: 4rem;
    border-top: 1px solid #eee;
    padding-top: 2.5rem;
}

.next-reads h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.next-reads-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.next-read-card {
    background: #f9faf9;
    padding: 1rem;
    border-radius: 12px;
    transition: 0.3s ease;
}

.next-read-card:hover {
    background: #f1f6f2;
    transform: translateY(-2px);
}

.next-read-card img {
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.next-read-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* ==================  زر العودة للأعلى ================== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #8a7aac;
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(138, 122, 172, 0.3);
    transition: 0.3s ease;
    display: none;
}

.back-to-top:hover {
    background: #6d5d8f;
    transform: translateY(-2px);
}

/* ==================  موبايل ================== */
@media (max-width: 768px) {
    .report-main {
        padding: 80px 15px 35px;
    }

    .report-article h1 {
        font-size: 1.85rem;
    }

    .report-article h2 {
        font-size: 1.5rem;
    }

    .soft-cta {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .soft-cta p {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .soft-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .strong-cta {
        margin: 3rem 0 2rem;
        padding: 2rem 1.5rem;
    }

    .strong-cta h2 {
        font-size: 1.7rem;
    }

    .strong-cta p {
        font-size: 1.1rem;
    }

    .strong-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .next-reads-list {
        grid-template-columns: 1fr;
    }
}
