/* Search modal styles */
.site-search-toggle {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-search-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1200;
}
.site-search-modal[aria-hidden="false"] {
    display: block;
}
.site-search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.site-search-modal__panel {
    position: absolute;
    left: 50%;
    top: 16%;
    transform: translateX(-50%);
    width: min(900px, calc(100% - 64px));
    background: #fff;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-radius: 6px;
}
.site-search-modal__close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.site-search-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.site-search-submit {
    margin-top: 12px;
    padding: 10px 18px;
    background: #222;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
}
/* small screen tweaks */
@media (max-width: 720px) {
    .site-search-modal__panel { top: 8%; width: calc(100% - 32px); }
}