/* Blog Content Section */
.blog-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Blog Filters */
.blog-filters {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.filters-header h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.results-count {
    color: #666;
    font-weight: 400;
    font-size: 1rem;
}

.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-dropdown select {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: white;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--main-color);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
    text-decoration: none;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    margin-bottom: 30px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #eee;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-item .page-link:hover,
.page-item.active .page-link {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    background: none;
    border-color: #eee;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tabs {
        justify-content: center;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .blog-filters {
        padding: 20px;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tab {
        text-align: center;
    }
}
