/* قسم آخر المواضيع - أنماط CSS */

.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    direction: rtl;
}

.blog-section .section-title {
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

/* أنماط شريط التبويبات */
.blog-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border: none;
}

.blog-tabs .nav-link {
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: bold;
    color: #444;
    background-color: #e9e9e9;
    transition: all 0.3s ease;
    border: none;
}

.blog-tabs .nav-link.active {
    background-color: #000;
    color: #fff;
}

.blog-tabs .nav-link:hover:not(.active) {
    background-color: #ddd;
}

/* أنماط بطاقات المدونة */
.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 320px;
    min-height: 320px;
    max-height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 8px 8px 0 0;
    background: #fff;
}

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

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f2b200;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.blog-content {
    padding: 12px 14px 10px 14px;
}

.blog-stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-stats .stat {
    display: flex;
    align-items: center;
}

.blog-stats .stat i {
    margin-left: 5px;
}

.blog-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #f2b200;
}

/* تجاوب التصميم */
@media (max-width: 992px) {
    .blog-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .blog-tabs {
        flex-wrap: wrap;
    }
    
    .blog-tabs .nav-link {
        margin-bottom: 10px;
    }
}
