/* تنسيقات القسم الرئيسي */
.articles-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

/* 4 مقالات في شبكة (Grid) */
.articles-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
}

/* تنسيق بطاقة المقال الفردي */
.article-card-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    text-align: right;
    min-height: 350px; 
}
.article-card-item:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transform: translateY(-5px); 
}

/* حاوية الصورة وتأثير اللمعان والتظليل (تم التعديل) */
.article-card-item .image-wrapper {
    height: 180px;
    overflow: hidden; 
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    /* ✨ إضافة تظليل خفيف لرفع الصورة بصرياً */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
.article-card-item img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    /* تم التعديل: نضيف filter للانتقال السلس */
    transition: transform 0.4s ease-in-out, filter 0.3s; 
}
/* تأثير الزوم والوضوح واللمعان عند التمرير (تم التعديل) */
.article-card-item:hover img {
    transform: scale(1.1); 
    /* 💎 زيادة السطوع والتباين قليلاً لتبدو لامعة وواضحة */
    filter: brightness(1.05) contrast(1.05); 
}

/* تنسيقات المحتوى (العنوان، التاريخ، المقتطف) */
.article-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}
.article-content h4 {
    color: #333;
    font-size: 18px;
    margin: 0 0 10px 0;
}
.article-content .post-date {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 5px;
}
.article-content .excerpt {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* استجابة الشاشات الصغيرة (الأعمدة تبقى 4 على الشاشات الكبيرة و 2 على التابلت و 1 على الجوال) */
@media (max-width: 768px) {
    .articles-grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 500px) {
    .articles-grid-container {
        grid-template-columns: 1fr; 
    }
}