.mv-search .wp-block-search__inside-wrapper {
    overflow: visible;
}

.mv-suggest {
    position: absolute;
    top: 100%;
    margin-top: .25rem;
    background: #fff;
    border: 1px solid var(--wp--preset--color--contrast-3, #e5e7eb);
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    z-index: 9999;
    max-height: 26rem;
    overflow: auto;
}

.mv-suggest-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .625rem;
    cursor: pointer;
}

.mv-suggest-item.is-active,
.mv-suggest-item:hover {
    background: var(--wp--preset--color--base-3, #f3f4f6);
}

.mv-suggest-thumb {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: .25rem;
    background: #fff;
}

.mv-suggest-text {
    min-width: 0;
    flex: 1;
}

.mv-suggest-title {
    font-size: .92rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mv-suggest-meta {
    font-size: .78rem;
    opacity: .8;
    display: flex;
    gap: .25rem;
    align-items: center;
}

.mv-suggest-viewall {
    display: block;
    text-align: center;
    padding: .5rem;
    border-top: 1px solid #eee;
    text-decoration: none;
}

/* @media (prefers-color-scheme: dark) {
    .mv-suggest {
        background: #0b0b0c;
        border-color: #2a2a2e;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    }

    .mv-suggest-item.is-active,
    .mv-suggest-item:hover {
        background: #16161a;
    }
} */