/*  /search/search.css — minimal custom CSS, rest handled by Bootstrap */

/* Slide animation only — Bootstrap has no utility for this */
#siteSearchOverlay {
    position: absolute;
    right: 1rem;
    left: auto;
    width: 380px;
    top: 100%;
    z-index: 1040;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    padding: 0 0.75rem;
}

#siteSearchOverlay.site-search--open {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
    padding: 0.65rem 0.75rem;
}