.archive-filters {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 1.4rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.archive-filters-heading {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.archive-filters-heading h2 {
    font-size: 1.65rem;
    margin: 0;
}

.filter-clear {
    background: none;
    border: 0;
    color: var(--brand-black);
    font-size: .78rem;
    padding: .2rem 0;
    text-decoration: underline;
}

.filter-group {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 1.25rem 0 0;
    padding: 1.25rem 0 0;
}

.filter-group legend {
    float: none;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 900;
    margin-bottom: .65rem;
}

.filter-options {
    display: grid;
    gap: .55rem;
}

.filter-option {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: .6rem;
    grid-template-columns: auto 1fr auto;
    padding-left: calc(var(--filter-depth, 0) * 1rem);
}

.filter-option input {
    accent-color: var(--brand-yellow);
    height: 1.1rem;
    width: 1.1rem;
}

.filter-count {
    background: var(--brand-white);
    border: 1px solid var(--line);
    border-radius: 50em;
    font-size: .72rem;
    min-width: 1.8rem;
    padding: .08rem .4rem;
    text-align: center;
}

.hours-filter {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hours-filter label {
    display: grid;
    font-size: .78rem;
    gap: .25rem;
}

.hours-filter input {
    border: 1px solid var(--line);
    border-radius: .55rem;
    min-width: 0;
    padding: .5rem .6rem;
    width: 100%;
}

@media (max-width: 991.98px) {
    .archive-filters {
        position: static;
    }
}
