#search-form {
    margin-top: 40px;
}

#search-suggestions {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 10;
    padding: 0;
    margin: 0;
    box-shadow: 0px 2px 24px 0px rgba(0,0,0,0.15);
    list-style: none;
    display: none;
    max-height: 150px;
    overflow: auto;
    font-family: NeueHaasGroteskText Pro;
}

#search-suggestions > li > a {
    display: block;
    position: relative;
    padding: 8px 10px;
    font-family: NeueHaasGroteskText Pro;
}

#search-suggestions > li.selected {
    background: #f8f8f8;
}

#search-suggestions:has(> li:hover) > li.selected {
    background: #fff;
}

#search-suggestions > li:hover {
    background: #f8f8f8 !important;
}

#search-suggestions > li > a > mark {
    background: transparent;
    font-weight: 600;
}

#search-results {
    margin-top: 40px;
}

#search-results h2, #search-results p {
    margin-block: 0;
}

#search-results article.uk-article {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 25px;
}

#search-results article.uk-article > a {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #f8f8f8;
}

#search-results article.uk-article > a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    #search-results article.uk-article {
        grid-template-columns: 1fr;
    }
}
#search-form .uk-grid-small{
    align-items: flex-end;
}