/* Delta over core-cards.css / core-page-nav.css (which own the facet list, its
   links, counts and the filter box): the rows a long group folds away, and the
   control that unfolds them. Driven by core_ui/js/facet-collapse.js. */
.core-facet__item--hidden { display: none; }

/* No `display` here on purpose: an author display value beats the UA
   [hidden] rule, and this button is shown and hidden through [hidden]. */
.core-facet__show-more {
    inline-size: 100%;
    min-block-size: var(--core-touch-min);
    margin-top: var(--core-space-3);
    padding: var(--core-space-2) var(--core-space-3);
    border: 1px solid var(--theme-border);
    border-radius: var(--theme-radius);
    background: transparent;
    color: var(--theme-ink-soft);
    font: inherit;
    font-size: var(--core-text-2);
    cursor: pointer;
}
.core-facet__show-more:hover { color: var(--theme-ink); }
