/**
 * Blog Filter Styles
 */

/* Category Filter Styles */
#blog-categories-filter {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0; 
    justify-content: center;
    margin: 0 0 4rem 0; 
}

#blog-categories-filter li {
    padding: 12px 15px;
    color: #424242;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    min-width: 8.5rem;
    text-align: center;
}
#blog-categories-filter li:hover {
    color: #000;
}
 

#blog-categories-filter li.active { 
    color: #1772D2;
    border-color: #1772D2;
    font-weight: 600;
}

/* Loading indicator */
.loading-posts {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    #blog-categories-filter {
        margin: 0 0 6.4rem 0;
    }
}
@media (max-width: 768px) {
    #blog-categories-filter {
        justify-content: flex-start; 
    }
    
    #blog-categories-filter li {
        margin-bottom: 10px;
    }
    
}
