/* LW Typesense font-size anchor (see instant-search.css for rationale). */
.lw-nl-suggest {
    font-size: 16px;
}
/* LW Typesense — Instant Search customization styles
   Currently only the NL "Try smarter search" banner. Loaded only when the
   instant-search feature flag is on. */

.lw-nl-suggest {
    display: none;
    margin: 0 0 1em 0;
    padding: 0.75em 1em;
    background: var(--wp--preset--color--background-muted, #F4F4F9);
    border: 1px solid var(--wp--preset--color--border-light, #E3E3F0);
    border-radius: 4px;
    font-size: 0.95em;
    line-height: 1.4;
}
.lw-nl-suggest.is-visible {
    display: flex;
    align-items: center;
    gap: 0.75em;
    flex-wrap: wrap;
}
.lw-nl-suggest-text {
    flex: 1 1 auto;
    min-width: 12em;
}
.lw-nl-suggest-btn {
    flex: 0 0 auto;
    padding: 0.4em 0.9em;
    background: #1E1E26;
    color: #fff;
    border: 0;
    border-radius: 3px;
    font-size: 0.9em;
    cursor: pointer;
    font-weight: 500;
}
.lw-nl-suggest-btn:hover { background: #000; }
.lw-nl-suggest-btn[disabled] { opacity: 0.6; cursor: wait; }