/* =====================================================================
   blog-filters.css — фильтры по Provider + Niveau для blog.html
   ===================================================================== */

.blog-filters {
    margin: 24px 0 28px;
    font-family: 'Onest', system-ui, -apple-system, sans-serif;
}

.blog-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
.blog-filter-row:last-child {
    margin-bottom: 0;
}

.blog-filter-label {
    font-size: 16px;
    color: #6b7280;
    margin-right: 8px;
    font-weight: 500;
    min-width: 80px;
}

.blog-chip {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    line-height: 1.4;
    white-space: nowrap;
}

.blog-chip:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.blog-chip-active {
    background: #2852B6;
    color: #ffffff;
    border-color: #2852B6;
}

.blog-chip-active:hover {
    background: #1e3f8f;
    border-color: #1e3f8f;
    color: #ffffff;
}

/* Empty state — когда ничего не найдено */
.blog-empty {
    text-align: center;
    padding: 40px 24px;
    background: #f3f4f6;
    border-radius: 12px;
    color: #6b7280;
    font-size: 16px;
    font-family: 'Onest', system-ui, -apple-system, sans-serif;
    margin: 20px 0;
}

.blog-empty p {
    margin: 0;
}

/* Mobile */
@media (max-width: 640px) {
    .blog-filter-row {
        gap: 8px;
    }
    .blog-filter-label {
        width: 100%;
        min-width: 0;
        margin-bottom: 4px;
        margin-right: 0;
    }
    .blog-chip {
        padding: 7px 14px;
        font-size: 14px;
    }
}