/* ==========================================================
   TÊTES BRÛLÉES — MAP STYLES — BASE
   Styles fondamentaux de la carte.
   Les styles popup/marqueur sont dans bloc_map.css.
   Dépend de leaflet.css (chargé avant via wp_enqueue_style)
   ========================================================== */

/* ── Conteneur principal ───────────────────────────────────── */
.tb-map {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #e8e4e0; /* couleur neutre pendant le chargement */
}

/* Message si aucun contenu géolocalisé */
.tb-map__empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #666;
    text-align: center;
    padding: 24px;
    margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .tb-map {
        height: 75vh;
        border-radius: 0;
    }
}

/* ── Contrôles Leaflet ─────────────────────────────────────── */
.leaflet-control-attribution {
    font-size: 10px;
}