/** Champ commune + liste de suggestions. */

.mt-commune { position: relative; }

.mt-commune__list {
    position: absolute;
    z-index: 30;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 260px;
    margin: 0;
    padding: 4px;
    overflow-y: auto;
    list-style: none;
    background: var(--mt-surface, #fff);
    border: 1px solid var(--mt-line, #e5dfd4);
    border-radius: var(--mt-radius, 10px);
    box-shadow: var(--mt-shadow-lg, 0 12px 32px rgba(43, 49, 40, .12));
}

.mt-commune__item {
    padding: 9px 12px;
    font-size: var(--mt-fs-body, 16px);
    border-radius: var(--mt-radius-sm, 6px);
    cursor: pointer;
}

.mt-commune__item:hover,
.mt-commune__item.is-active {
    background: var(--mt-brand-tint, #e6f2f0);
    color: var(--mt-brand-strong, #14655f);
}
