.fnm-map-box {
    position: relative;
    border: 1px solid #dcdcde;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.fnm-map {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 420px;
}

.fnm-map-notice {
    padding: 16px 18px;
    border: 1px solid #dcdcde;
    border-radius: 14px;
    background: #fff;
}

.fnm-map-info {
    max-width: 260px;
}

.fnm-map-info strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.fnm-map-info__province {
    color: #5c6670;
    font-size: 13px;
}

.fnm-map-info__notes {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
}

/* =========================
   PUBLIC MAP SEARCH UI
   ========================= */

.fnm-map-search {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 20;
    width: min(460px, calc(100% - 44px));
    pointer-events: auto;
}

.fnm-map-search__input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    color: #1d2327;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.fnm-map-search__input:focus {
    outline: none;
    border-color: rgba(188,173,116,.55);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.14),
        0 0 0 4px rgba(188,173,116,.14);
}

.fnm-map-search__results {
    display: none;
    margin-top: 10px;
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fnm-map-search__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 13px 16px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
    box-sizing: border-box;
}

.fnm-map-search__item:last-child {
    border-bottom: 0;
}

.fnm-map-search__item:hover,
.fnm-map-search__item:focus {
    background: rgba(188,173,116,.10);
    outline: none;
}

.fnm-map-search__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.fnm-map-search__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.fnm-map-search__community {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    color: #1d2327;
}

.fnm-map-search__province {
    flex: 0 0 auto;
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .fnm-map-search {
        top: 14px;
        left: 14px;
        width: calc(100% - 28px);
    }

    .fnm-map-search__input {
        height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }

    .fnm-map-search__item {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .fnm-map-search__province {
        max-width: none;
        padding-left: 20px;
    }
}