/* listing-map.css — prefix: lmp- */

.lmp-section {
    padding: 2rem 0;
    border-top: 1px solid var(--antologa-light-gray);
    width: 100%;
}

.lmp-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--antologa-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.75rem;
}

.lmp-wrap {
    border: 1px solid var(--antologa-light-gray);
    border-radius: 0.875rem;
    overflow: hidden;
    width: 100%;
}

.lmp-map {
    width: 100%;
    height: 14rem;
    display: block;
}

.lmp-map > div {
    width: 100%;
    height: 100%;
}

.lmp-placeholder {
    width: 100%;
    height: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f9fafb;
}

.lmp-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.lmp-legend-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    background: transparent;
    color: var(--antologa-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
}

.lmp-legend-chip.active {
    background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.lmp-legend-chip:not(.active) {
    opacity: 0.45;
}

.lmp-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
