.blogs-tab {
    background-color: #000;
    padding-block: 20px;
}

.blogs-tab .row {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    flex-wrap: wrap;

}

.blogs-tab .row-top h2 {
    text-align: center;
    margin-block: 20px;
}

.blogs-tab .row-btm {
    display: flex;
    justify-content: center;
    margin-block: 20px;
}

.blogs-tab .row-btm input {
    padding: 10px 20px;
    font-size: 20px;
    width: 80%; 
    border-radius:5px 
}
.blogs-tab .row-btm input:focus{
    outline: 1px solid #000; 
}

.blogs-tab .row .tab-button {
    background-color: var(--e-global-color-primary);
    padding: 8px 17px;
    border: none;
    color: var(--white);
    font-size: 18px;
    transition: all ease-in-out .2s;
}

.blogs-tab .row .tab-button:hover {
    transform: translateY(-5px);
}

.blogs-tab .row .tab-button.active {
    transition: all ease-in-out .2s;
    background-color: var(--e-global-color-913edee);
}

/* نتائج البحث المنسدلة */
.search-results {
    position: absolute;
    background-color: #fff;
    width: 80%;
    top: 100%;
    max-height: 250px;
    color: var(--black-2);
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
    font-size: 20px;
}

.search-results .result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.search-results .result-item img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.search-results .result-item:hover {
    background-color: #f5f5f5;
}

.search-results .no-result {
    text-align: center;
    padding: 15px;
    color: #777;
}

/* هايلايت عند اختيار المقال */
.card-blog.highlight {
    outline: 3px solid var(--e-global-color-primary);
    transition: outline 0.3s ease;
}



/* ---------------------------------------------------- */
/* الرسبونسف */
/* ---------------------------------------------------- */

/* تابلت (992px وأقل) */
@media (max-width: 992px) {
    .blogs-tab .row {
        justify-content: center;
        gap: 15px;
    }

    .blogs-tab .row .tab-button {
        font-size: 16px;
        padding: 8px 16px;
    }

}

/* موبايل كبير (768px وأقل) */
@media (max-width: 768px) {
    .blogs-tab .row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .blogs-tab .row .tab-button {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }


}

/* موبايل صغير (480px وأقل) */
@media (max-width: 480px) {
    .blogs-tab {
        padding-block: 15px;
    }

    .blogs-tab .row .tab-button {
        font-size: 14px;
        padding: 8px 12px;
    }


}