
/* v1.1.2 — Kill gap final : trust banner collé au header */
.ea6.ea6-model {
    padding-top: 0 !important;
}

/* v1.1.3 — Hide pill "Votre véhicule : ... ↑ Modifier" — selector PRÉCIS via ID unique
 * BUG v1.1.2 : .ea-l2c-wrap était trop large (7 usages dont wrapper pack+cards).
 * Ici on cible uniquement #ea-l2c-compat-ribbon (l'élément interne unique de la pill).
 * On hide aussi son wrapper direct (la div.ea-l2c-wrap parent) avec :has() pour kill l'espace blanc.
 */
#ea-l2c-compat-ribbon,
.ea-l2c-wrap:has(> #ea-l2c-compat-ribbon) {
    display: none !important;
}

/* v1.1.0 — 4 pills, 1 ligne propre, sans wrap si possible */
.ea6-trust-row.ea-s6-enriched {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center;
    justify-content: center;
    gap: 6px 18px !important;
}
.ea6-trust-row.ea-s6-enriched .ea6-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: inherit;
    white-space: nowrap;
}
.ea6-trust-row.ea-s6-enriched .ea6-trust-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
/* Séparateur subtle entre pills (sauf dernière) */
.ea6-trust-row.ea-s6-enriched .ea6-trust-item:not(:last-child)::after {
    content: "·";
    margin-left: 18px;
    color: #C7CBD9;
    font-weight: 400;
}

@media (max-width: 900px) {
    .ea6-trust-row.ea-s6-enriched { gap: 6px 12px !important; }
    .ea6-trust-row.ea-s6-enriched .ea6-trust-item { font-size: 12px; }
    .ea6-trust-row.ea-s6-enriched .ea6-trust-item:not(:last-child)::after { margin-left: 12px; }
}
@media (max-width: 600px) {
    .ea6-trust-row.ea-s6-enriched { gap: 4px 10px !important; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .ea6-trust-row.ea-s6-enriched .ea6-trust-item { font-size: 11.5px; }
    .ea6-trust-row.ea-s6-enriched .ea6-trust-item:not(:last-child)::after { margin-left: 10px; }
    .ea6-trust-row.ea-s6-enriched .ea6-trust-item svg { width: 13px; height: 13px; }
}
