/* أنماط التبويبات */
.afb-category-tabs-wrapper {
    margin: 25px 0;
    font-family: inherit;
}

/* توسيط التبويبات */
.afb-cpt-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.afb-cpt-tab {
    margin: 0;
    cursor: pointer;
}

.afb-cpt-tab a {
    display: block;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.afb-cpt-tab.afb-cpt-tab-active a {
    color: #fff !important;
}

.afb-cpt-tab-content {
    padding: 20px 0;
}

/* عرض الشبكة (Grid) */
.afb-cpt-grid {
    display: grid;
    gap: 25px;
}

.afb-cpt-grid-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.afb-cpt-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.afb-cpt-post-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.afb-cpt-post-content {
    padding: 15px;
}

.afb-cpt-post-title {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.afb-cpt-post-title a {
    color: #333;
    text-decoration: none;
}

.afb-cpt-post-title a:hover {
    color: #0073aa;
}

.afb-cpt-post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.afb-cpt-post-meta {
    font-size: 0.85em;
    color: #999;
    display: flex;
    gap: 15px;
}

/* عرض القائمة (List) */
.afb-cpt-list-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.afb-cpt-list-item:hover {
    background-color: #f9f9f9;
}

.afb-cpt-list-thumb {
    flex-shrink: 0;
    width: 100px;
}

.afb-cpt-list-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.afb-cpt-list-content {
    flex: 1;
}

/* الأخطاء والتنبيهات */
.afb-cpt-error,
.afb-cpt-no-posts {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    text-align: center;
}

.afb-cpt-custom-title {
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .afb-cpt-tab a {
        white-space: normal;
        border-radius: 5px;
    }
    
    .afb-cpt-list-item {
        flex-direction: column;
    }
    
    .afb-cpt-list-thumb {
        width: 100%;
    }
    
    .afb-cpt-list-thumb img {
        height: auto;
        max-height: 200px;
    }
}