.catalog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.catalog-head h1 {
    font-weight: 900;
    margin-bottom: 10px;
}

.catalog-head p {
    max-width: 760px;
    color: var(--muted);
    margin-bottom: 0;
}

.catalog-head__note {
    min-width: 160px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
    text-align: center;
}

.catalog-head__note strong {
    display: block;
    font-size: 30px;
    color: var(--brand);
}

.catalog-head__note span {
    color: var(--muted);
}

.filter-panel {
    position: sticky;
    top: 86px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
}

.filter-links {
    display: grid;
    gap: 6px;
}

.filter-links a {
    color: var(--ink);
    font-weight: 700;
}

.filter-checks {
    display: grid;
    gap: 2px;
    max-height: 180px;
    overflow: auto;
    padding-right: 4px;
}

.filter-panel .form-label {
    font-weight: 900;
}

#catalogResults {
    position: relative;
    min-height: 240px;
}

#catalogResults.is-loading {
    opacity: .55;
    pointer-events: none;
}

.pagination .page-link {
    color: var(--brand);
}

.pagination .active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}
