.search_page {
    padding: var(--module_spacing) 0;
}

.search_hero {
    margin-bottom: 48px;
}

.search_headline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px;
}

.search_headline em {
    font-style: normal;
    color: var(--special_color);
}

.search_form_large_inner {
    display: flex;
    align-items: center;
    background: var(--color_grey);
    height: 56px;
    padding: 0 16px;
    gap: 12px;
    max-width: 640px;
}

.search_form_large_inner > svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: #37460d;
    stroke: none;
}

.search_form_large_inner input[type="search"] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
    padding: 0;
    width: 100%;
}

.search_form_large_inner input[type="search"]::placeholder {
    color: rgba(0, 0, 0, .4);
}

.search_form_large_inner input[type="search"]::-webkit-search-cancel-button,
.search_form_large_inner input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.search_form_large_inner button[type="submit"] {
    background: #37460d;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    color: #fff;
    transition: background .15s ease-out;
}

.search_form_large_inner button[type="submit"]:hover {
    background: var(--color_green);
}

.search_form_large_inner button[type="submit"] svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

.search_results {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search_result {
    background: var(--color_grey);
    padding: 24px;
    border-left: 3px solid transparent;
    transition: border-color .15s ease-out;
}

.search_result:hover {
    border-left-color: var(--color_green);
}

.search_result_breadcrumb {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--special_color);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.search_result_title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.search_result_title a {
    color: #000;
    text-decoration: none;
}

.search_result_title a:hover {
    color: var(--special_color);
}

.search_result_excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
}

.search_result_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #37460d;
    text-decoration: none;
}

.search_result_link:hover {
    color: #37460d;
}

.search_result_link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    transition: transform .15s ease-out;
}

.search_result_link:hover svg {
    transform: translateX(3px);
}

mark.search_highlight {
    background: rgba(135, 175, 32, .2);
    color: inherit;
    font-weight: 700;
    border-radius: 2px;
    padding: 0 2px;
}

.search_no_results {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
    padding: 40px 0;
    margin: 0;
}

.search_sentinel {
    height: 1px;
    margin-top: 40px;
}

.search_loading {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 40px;
}

.search_loading[aria-hidden="true"] {
    display: none;
}

.search_loading_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color_green);
    animation: search_dot_bounce 1.2s ease-in-out infinite;
}

.search_loading_dot:nth-child(2) { animation-delay: .2s; }
.search_loading_dot:nth-child(3) { animation-delay: .4s; }

@keyframes search_dot_bounce {
    0%, 80%, 100% {
        transform: scale(.6);
        opacity: .4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .search_form_large_inner { max-width: 100%; }
    .search_result { padding: 16px; }
    .search_headline { font-size: 1.5rem; }
}
