/* ==========================================================
   IndaloCasa — Sections éditoriales de l'accueil
   Manifeste · Logements · Services · Destination
   (préfixe .ed- pour éviter tout conflit)
   ========================================================== */

.ed-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}

/* --- Label en petites capitales avec filet --- */
.ed-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ochre, #c98b32);
    font-weight: 600;
    margin: 0 0 26px;
}
.ed-eyebrow::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--border, #e2d9ca);
    max-width: 120px;
}

/* --- En-tête de section aligné à gauche --- */
.ed-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border, #e2d9ca);
    margin-bottom: 44px;
}
.ed-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    margin: 0;
    letter-spacing: -.015em;
}
.ed-head .ed-side {
    color: var(--muted-foreground, #6d6a63);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ed-head .ed-side a {
    color: var(--primary, #12667a);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.ed-head .ed-side a:hover { border-color: var(--primary, #12667a); }

/* ==================== BARRE DE RECHERCHE ==================== */
.ed-searchwrap {
    margin-top: -46px;
    position: relative;
    z-index: 20;
}
.ed-search {
    background: var(--panel, #fbf8f3);
    border: 1px solid var(--border, #e2d9ca);
    border-radius: 4px;
    box-shadow: 0 30px 70px -34px rgba(15, 42, 46, .5);
    display: grid;
    grid-template-columns: 1fr 1.25fr .85fr auto;
    align-items: stretch;
    position: relative;
}

.ed-field {
    padding: 15px 24px 16px;
    border-right: 1px solid var(--border, #e2d9ca);
    min-width: 0;
}
.ed-field label {
    display: block;
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary, #12667a);
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
}
.ed-field-in {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.ed-ico, .ed-caret {
    width: 17px; height: 17px;
    flex: none;
    fill: none;
    stroke: var(--muted-foreground, #6d6a63);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .7;
    transition: stroke .2s, opacity .2s;
}
.ed-caret { margin-left: auto; width: 15px; height: 15px; }

/* champs (l'input de flatpickr est régénéré : on cible l'élément) */
.ed-field-in input,
.ed-field-in select {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground, #22282b);
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.ed-field-in input::placeholder { color: var(--muted-foreground, #6d6a63); font-weight: 400; }
.ed-field-in select { padding-right: 4px; }

.ed-field:focus-within { background: rgba(18, 102, 122, .035); }
.ed-field:focus-within .ed-ico { stroke: var(--primary, #12667a); opacity: 1; }
.ed-field:hover .ed-ico { opacity: 1; }

/* bouton */
.ed-search-btn {
    background: var(--primary, #12667a);
    color: #fff;
    border: 0;
    padding: 0 34px;
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s;
    white-space: nowrap;
}
.ed-search-btn svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 1.7; stroke-linecap: round;
}
.ed-search-btn:hover { background: var(--rose-dark, #0e4f5f); }
.ed-search-btn:focus-visible { outline: 2px solid var(--ochre, #c98b32); outline-offset: -4px; }

/* bouton de réinitialisation, posé en dehors du flux */
.ed-search-reset {
    position: absolute;
    top: -14px; right: -14px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--foreground, #22282b);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    transition: background .2s, transform .2s;
}
.ed-search-reset:hover { background: var(--destructive, #c0563c); color: #fff; transform: scale(1.08); }

@media (max-width: 760px) {
    .ed-searchwrap { margin-top: -28px; }
    .ed-search { grid-template-columns: 1fr; }
    .ed-field { border-right: 0; border-bottom: 1px solid var(--border, #e2d9ca); }
    .ed-search-btn { padding: 17px; }
}

/* ==================== MANIFESTE ==================== */
.ed-manifesto { padding: clamp(80px, 12vw, 150px) 0; }
.ed-manifesto .ed-inner { max-width: 880px; }
.ed-manifesto .ed-big {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.55rem, 3.2vw, 2.4rem);
    line-height: 1.32;
    margin: 0 0 30px;
    letter-spacing: -.01em;
    text-wrap: balance;
}
.ed-manifesto .ed-small {
    max-width: 58ch;
    color: var(--muted-foreground, #6d6a63);
    margin: 0;
    font-size: 1.02rem;
}
.ed-sign {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .9rem;
    color: var(--muted-foreground, #6d6a63);
}
.ed-sign::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--ochre, #c98b32);
    flex: none;
}


/* --- Manifeste : texte à gauche, image à droite --- */
.ed-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.ed-manifesto-grid .ed-inner { max-width: none; }

.ed-manifesto-fig {
    margin: 0;
    position: relative;
}
.ed-manifesto-fig img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    box-shadow: 0 30px 60px -30px rgba(15, 42, 46, .55);
}
/* filet ocre décalé, discret */
.ed-manifesto-fig::after {
    content: "";
    position: absolute;
    left: -14px;
    bottom: -14px;
    width: 92px;
    height: 92px;
    border-left: 1px solid var(--ochre, #c98b32);
    border-bottom: 1px solid var(--ochre, #c98b32);
    pointer-events: none;
}

@media (max-width: 900px) {
    .ed-manifesto-grid { grid-template-columns: 1fr; gap: 38px; }
    .ed-manifesto-fig { max-width: 460px; }
    .ed-manifesto-fig::after { display: none; }
}

/* ==================== LOGEMENTS ==================== */
.ed-props { padding: 0 0 clamp(70px, 10vw, 120px); }

/* -- Vitrine (un seul logement) -- */
.ed-showcase {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: start;
}
.ed-showcase-media { display: flex; flex-direction: column; gap: 12px; }
.ed-showcase-main {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--muted, #efe7d9);
}
.ed-showcase-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2,.6,.2,1);
}
.ed-showcase-main:hover img { transform: scale(1.04); }
.ed-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.ed-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    background: var(--muted, #efe7d9);
}
.ed-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.ed-thumb:hover img { transform: scale(1.08); }
.ed-thumb-more {
    position: absolute; inset: 0;
    background: rgba(9, 26, 29, .62);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; font-weight: 600;
    letter-spacing: .02em;
}

.ed-showcase-info { padding-top: 4px; }
.ed-showcase-info .ed-loc {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-foreground, #6d6a63);
    margin: 0 0 10px;
}
.ed-showcase-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 0 0 16px;
    line-height: 1.16;
    letter-spacing: -.01em;
}
.ed-showcase-info h3 a { color: inherit; text-decoration: none; }
.ed-showcase-info h3 a:hover { color: var(--primary, #12667a); }
.ed-desc {
    color: var(--muted-foreground, #6d6a63);
    font-size: .97rem;
    margin: 0 0 24px;
    max-width: 46ch;
}
.ed-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border, #e2d9ca);
    border: 1px solid var(--border, #e2d9ca);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 26px;
}
.ed-spec {
    background: var(--panel, #fbf8f3);
    padding: 14px 16px;
}
.ed-spec .k {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.ed-spec .l {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-foreground, #6d6a63);
    margin-top: 3px;
}
.ed-priceline {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border, #e2d9ca);
    margin-bottom: 20px;
}
.ed-priceline .p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-variant-numeric: tabular-nums;
}
.ed-priceline .u { color: var(--muted-foreground, #6d6a63); font-size: .85rem; }
.ed-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ed-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 3px;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, color .25s, border-color .25s;
}
.ed-btn-solid { background: var(--primary, #12667a); color: #fff; border: 1px solid var(--primary, #12667a); }
.ed-btn-solid:hover { background: var(--rose-dark, #0e4f5f); color: #fff; }
.ed-btn-ghost { background: transparent; color: var(--foreground, #22282b); border: 1px solid var(--border, #e2d9ca); }
.ed-btn-ghost:hover { border-color: var(--foreground, #22282b); color: var(--foreground, #22282b); }

@media (max-width: 900px) {
    .ed-showcase { grid-template-columns: 1fr; gap: 28px; }
}

/* -- Grille (plusieurs logements) -- */
.ed-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; }
@media (max-width: 900px) { .ed-grid { grid-template-columns: 1fr; } }

.ed-feat {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    text-decoration: none;
}
.ed-feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.6,.2,1); }
.ed-feat:hover img { transform: scale(1.04); }
.ed-feat .veil {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,22,24,.86), rgba(9,22,24,.15) 55%, transparent);
}
.ed-feat .body { position: relative; padding: 34px; width: 100%; }
.ed-feat .loc { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin: 0 0 8px; }
.ed-feat h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.8rem; margin: 0 0 18px; letter-spacing: -.01em; color: #fff; }
.ed-feat .row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22);
}
.ed-feat .price { font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-variant-numeric: tabular-nums; }
.ed-feat .price small { font-family: 'Inter', sans-serif; font-size: .75rem; opacity: .78; margin-left: 3px; }
.ed-feat .go { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px; }

.ed-list { display: flex; flex-direction: column; gap: 24px; }
.ed-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border, #e2d9ca);
}
.ed-list .ed-card:last-child { border-bottom: 0; padding-bottom: 0; }
.ed-card .th { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 3px; background: var(--muted, #efe7d9); }
.ed-card .th img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.ed-card:hover .th img { transform: scale(1.06); }
.ed-card h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.15rem; margin: 0 0 5px; line-height: 1.25; }
.ed-card .loc { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-foreground, #6d6a63); margin: 0 0 9px; }
.ed-card .meta { display: flex; gap: 14px; font-size: .82rem; color: var(--muted-foreground, #6d6a63); margin-bottom: 9px; flex-wrap: wrap; }
.ed-card .pr { font-family: 'Playfair Display', Georgia, serif; font-size: 1.08rem; font-variant-numeric: tabular-nums; }
.ed-card .pr small { font-family: 'Inter', sans-serif; font-size: .74rem; color: var(--muted-foreground, #6d6a63); }
@media (max-width: 520px) { .ed-card { grid-template-columns: 110px 1fr; gap: 14px; } }

/* ==================== SERVICES ==================== */
.ed-serv {
    background: var(--panel, #fbf8f3);
    border-top: 1px solid var(--border, #e2d9ca);
    border-bottom: 1px solid var(--border, #e2d9ca);
    padding: clamp(64px, 9vw, 104px) 0;
}
.ed-serv .ed-head { border-bottom: 0; margin-bottom: 10px; padding-bottom: 0; }
.ed-sgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 46px;
    margin-top: 26px;
}
.ed-sitem .ic { width: 32px; height: 32px; color: var(--primary, #12667a); margin-bottom: 16px; }
.ed-sitem .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.ed-sitem h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.12rem; margin: 0 0 8px; }
.ed-sitem p { margin: 0; color: var(--muted-foreground, #6d6a63); font-size: .93rem; }

/* ==================== DESTINATION ==================== */
.ed-dest {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ed-dest > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ed-dest .veil {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(9,26,29,.92) 0%, rgba(9,26,29,.74) 42%, rgba(9,26,29,.28) 100%);
}
.ed-dest .body { position: relative; color: #f3ede2; max-width: 540px; padding: clamp(56px, 8vw, 92px) 0; }
.ed-dest .ed-eyebrow::after { background: rgba(255,255,255,.28); }
.ed-dest h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.85rem, 3.8vw, 2.7rem);
    margin: 0 0 20px;
    line-height: 1.16;
    letter-spacing: -.015em;
    color: #fff;
}
.ed-dest p { margin: 0 0 16px; color: #cfc7b9; font-size: 1rem; }
.ed-facts {
    display: flex; gap: 38px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.ed-fact .k { font-family: 'Playfair Display', Georgia, serif; font-size: 1.65rem; color: #fff; font-variant-numeric: tabular-nums; }
.ed-fact .l { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #a99f8f; }

/* ==================== Repères de section ====================
   .ed-rv est volontairement neutre : le contenu est toujours visible.
   (Une apparition au défilement pourra être ajoutée plus tard, une
   fois vérifiée en conditions réelles.)
   ============================================================ */
.ed-rv { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .ed-showcase-main img, .ed-feat img, .ed-card .th img, .ed-thumb img { transition: none; }
}

/* ==================== CARTE ==================== */
.ed-map {
    background: var(--muted, #efe7d9);
    border-top: 1px solid var(--border, #e2d9ca);
    padding: clamp(64px, 9vw, 104px) 0;
}
.ed-map .ed-head { margin-bottom: 34px; }
.ed-map .ed-side { max-width: 46ch; text-align: right; }

.ed-map-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.ed-map-layout:has(.ed-map-list) { grid-template-columns: 1fr 320px; }

.ed-map-canvas {
    position: relative;
    height: 540px;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--border, #e2d9ca);
    box-shadow: 0 26px 56px -30px rgba(15, 42, 46, .5);
    background: var(--panel, #fbf8f3);
}

/* --- marqueur : pastille de prix --- */
.ed-pin {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #fff;
    background: var(--primary, #12667a);
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 6px 13px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(9, 26, 29, .35);
    transition: background .2s, transform .2s, box-shadow .2s;
    position: relative;
}
.ed-pin::after {                      /* petite pointe sous la pastille */
    content: "";
    position: absolute;
    left: 50%; bottom: -5px;
    width: 8px; height: 8px;
    background: inherit;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(-50%) rotate(45deg);
}
.ed-pin:hover,
.ed-pin.is-hover { transform: scale(1.09); box-shadow: 0 8px 22px rgba(9, 26, 29, .45); }
.ed-pin.is-active {
    background: var(--ochre, #c98b32);
    color: #2a1c04;
    transform: scale(1.09);
}

/* --- fiche au clic --- */
.ed-popup .maplibregl-popup-content {
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 44px -14px rgba(9, 26, 29, .5);
    background: var(--panel, #fbf8f3);
    border: 1px solid var(--border, #e2d9ca);
}
.ed-popup .maplibregl-popup-tip { border-top-color: var(--panel, #fbf8f3); }
.ed-pop-img { width: 100%; height: 132px; object-fit: cover; display: block; }
.ed-pop-body { padding: 13px 15px 15px; }
.ed-pop-city {
    font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted-foreground, #6d6a63); margin: 0 0 4px;
}
.ed-pop-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem; font-weight: 600; margin: 0 0 7px;
    color: var(--foreground, #22282b); line-height: 1.2;
}
.ed-pop-meta {
    display: flex; gap: 12px; font-size: .78rem;
    color: var(--muted-foreground, #6d6a63); margin-bottom: 11px;
}
.ed-pop-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding-top: 11px; border-top: 1px solid var(--border, #e2d9ca);
}
.ed-pop-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem; font-variant-numeric: tabular-nums;
    color: var(--foreground, #22282b);
}
.ed-pop-price small { font-family: 'Inter', sans-serif; font-size: .7rem; color: var(--muted-foreground, #6d6a63); }
.ed-pop-cta {
    background: var(--primary, #12667a); color: #fff;
    font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
    padding: 8px 13px; border-radius: 3px; text-decoration: none;
    transition: background .2s; white-space: nowrap;
}
.ed-pop-cta:hover { background: var(--rose-dark, #0e4f5f); color: #fff; }

/* --- liste latérale --- */
.ed-map-list {
    display: flex; flex-direction: column; gap: 10px;
    max-height: 540px; overflow-y: auto; padding-right: 4px;
}
.ed-map-item {
    display: grid; grid-template-columns: 74px 1fr; gap: 13px;
    align-items: center; text-align: left;
    background: var(--panel, #fbf8f3);
    border: 1px solid var(--border, #e2d9ca);
    border-radius: 3px;
    padding: 9px; cursor: pointer; font-family: inherit;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ed-map-item:hover { border-color: var(--primary, #12667a); transform: translateX(2px); }
.ed-map-item.is-active {
    border-color: var(--ochre, #c98b32);
    box-shadow: 0 0 0 1px var(--ochre, #c98b32);
}
.ed-map-item .th {
    width: 74px; height: 62px; border-radius: 2px; overflow: hidden;
    background: var(--muted, #efe7d9); display: block;
}
.ed-map-item .th img { width: 100%; height: 100%; object-fit: cover; }
.ed-map-item .txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ed-map-item .nm {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: .95rem;
    color: var(--foreground, #22282b);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ed-map-item .ct {
    font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted-foreground, #6d6a63);
}
.ed-map-item .pr {
    font-family: 'Playfair Display', Georgia, serif; font-size: .95rem;
    font-variant-numeric: tabular-nums; color: var(--primary, #12667a); margin-top: 2px;
}
.ed-map-item .pr small { font-family: 'Inter', sans-serif; font-size: .68rem; color: var(--muted-foreground, #6d6a63); }

/* contrôles de la carte, adoucis */
.ed-map-canvas .maplibregl-ctrl-group {
    border-radius: 3px;
    box-shadow: 0 4px 14px rgba(9, 26, 29, .18);
    border: 1px solid var(--border, #e2d9ca);
}

@media (max-width: 900px) {
    .ed-map-layout, .ed-map-layout:has(.ed-map-list) { grid-template-columns: 1fr; }
    .ed-map-canvas { height: 400px; }
    .ed-map-list { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; }
    .ed-map-item { grid-template-columns: 1fr; min-width: 170px; }
    .ed-map-item .th { width: 100%; height: 96px; }
    .ed-map .ed-side { text-align: left; }
}
