/* ==========================================================================
   Linov Blog Filter — boutons de filtre par catégorie
   ========================================================================== */

.linov-blog-filter {
    margin-bottom: 48px;
}

.linov-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.linov-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 24px;
    border: 2px solid #d6d6d6;
    border-radius: 30px;
    background: #fff;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background  0.2s ease,
        border-color 0.2s ease,
        color        0.2s ease,
        box-shadow   0.2s ease;
}

.linov-filter-btn:hover {
    border-color: #888;
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    text-decoration: none;
}

.linov-filter-btn.is-active {
    background: #222;
    border-color: #222;
    color: #fff;
    text-decoration: none;
}

.linov-filter-btn.is-active:hover {
    background: #444;
    border-color: #444;
}

.linov-no-results {
    padding: 48px 0;
    text-align: center;
    color: #999;
    font-size: 15px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
    .linov-blog-filter {
        margin-bottom: 28px;
    }

    .linov-filter-nav {
        gap: 8px;
    }

    .linov-filter-btn {
        padding: 7px 18px;
        font-size: 13px;
    }
}
