/* ========================================
   Compact News Cards - 5 per row
   ======================================== */

/* تصغير بطاقات الأخبار */
.latest-news .news-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.latest-news .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* تصغير الصورة */
.latest-news .news-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-news .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.latest-news .news-card:hover .news-card-image img {
    transform: scale(1.05);
}

/* تاريخ الخبر */
.latest-news .news-card-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(108, 180, 77, 0.95);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

[dir="rtl"] .latest-news .news-card-date {
    right: auto;
    left: 10px;
}

/* محتوى البطاقة */
.latest-news .news-card-body {
    padding: 1.25rem;
}

/* عنوان الخبر */
.latest-news .news-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.latest-news .news-card-title a {
    color: #6CB44D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-news .news-card-title a:hover {
    color: #F5C300;
}

/* وصف الخبر */
.latest-news .news-card-excerpt {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer البطاقة */
.latest-news .news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

/* معلومات الكاتب */
.latest-news .news-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #888;
}

.latest-news .news-card-author i {
    color: #F5C300;
    font-size: 1rem;
}

/* زر قراءة المزيد */
.latest-news .news-card-read-more {
    font-size: 0.875rem;
    color: #6CB44D;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

.latest-news .news-card-read-more:hover {
    color: #F5C300;
    gap: 0.5rem;
}

.latest-news .news-card-read-more i {
    font-size: 0.688rem;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 991px) {
    .latest-news .news-card-image {
        height: 200px;
    }
    
    .latest-news .news-card-body {
        padding: 1.125rem;
    }
    
    .latest-news .news-card-title {
        font-size: 1.063rem;
    }
    
    .latest-news .news-card-excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .latest-news .news-card-image {
        height: 200px;
    }
    
    .latest-news .news-card-body {
        padding: 0.875rem;
    }
    
    .latest-news .news-card-title {
        font-size: 1rem;
    }
    
    .latest-news .news-card-excerpt {
        font-size: 0.813rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .latest-news .news-card-image {
        height: 180px;
    }
}
