.bb-live-form {
    max-width: 1320px;
    margin: 0 auto 24px;
}

.bb-filter-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .10);
    padding: 22px;
}

.bb-filter-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f3;
}

.bb-filter-panel__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.bb-filter-panel__subtitle {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #64748b;
}

.bb-filter-panel__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #d7dee7;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.bb-filter-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) minmax(180px, .8fr) minmax(220px, .95fr) minmax(220px, .95fr) 170px;
    gap: 14px;
    align-items: end;
}

.bb-field {
    min-width: 0;
}

.bb-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 900;
    color: #475569;
}

.bb-field input,
.bb-field select {
    width: 100%;
    height: 54px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    font-size: 16px;
    padding: 0 16px;
    box-sizing: border-box;
    outline: none;
}

.bb-field input:focus,
.bb-field select:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .08);
}

.bb-check {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #d7dee7;
    border-radius: 16px;
    background: #f8fafc;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
    cursor: pointer;
    white-space: nowrap;
}

.bb-check input {
    width: 18px;
    height: 18px;
    margin: 0;
}

@media (max-width: 1180px) {
    .bb-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bb-field--search {
        grid-column: 1 / -1;
    }

    .bb-check {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .bb-live-form {
        margin: 0 12px 18px;
    }

    .bb-filter-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .bb-filter-panel__head {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .bb-filter-panel__reset {
        width: 100%;
    }

    .bb-filter-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bb-field input,
    .bb-field select,
    .bb-check {
        height: 52px;
        font-size: 16px;
    }

    .bb-check {
        justify-content: center;
    }
}
