
/* تنسيق صفحة المقال */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    word-wrap: break-word;
}

.post-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-content .img-fluid {
    max-width: 100%;
    height: auto;
}

.page-content figure {
    margin: 2rem 0;
    text-align: center;
}

.page-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-content figure figcaption {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.page-content h2, 
.page-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.page-content h2 {
    font-size: 1.6rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.page-content h3 {
    font-size: 1.4rem;
}

/* تحسينات للصور المضمنة في المحتوى */
.page-content .embedded-image {
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    display: block;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .single-post {
        padding: 0 10px;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .page-content {
        font-size: 1rem;
        line-height: 1.7;
        text-align: right;
    }
    
    .page-content img {
        margin: 1rem auto;
    }
    
    .page-content h2 {
        font-size: 1.4rem;
    }
    
    .page-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.4rem;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
    
    .page-content img {
        border-radius: 5px;
    }
}

/* تحسينات للطباعة */
@media print {
    .page-content {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .page-content img {
        max-width: 90% !important;
        page-break-inside: avoid;
    }
    
    .post-title {
        font-size: 18pt;
    }
}


.page-content {
    line-height: 1.6;
    font-size: 1rem;

}



.tagged-word {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.tagged-word:hover {
    text-decoration: underline;
}






