/* ===== RÉASSURANCE ===== */
.eco-reassurance {
    background: #fff;
    border-bottom: 1px solid var(--eco-border, #e6e6e6);
    padding: 28px 0;
}

.eco-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eco-reassurance-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.eco-reassurance-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(43, 108, 176, .10); /* fond accent très pâle */
    border-radius: 50%;
    color: var(--eco-accent, #2b6cb0);
}
.eco-reassurance-icon svg { width: 24px; height: 24px; }

.eco-reassurance-text { display: flex; flex-direction: column; gap: 2px; }
.eco-reassurance-text strong { font-size: 15px; color: var(--eco-text, #1d2327); }
.eco-reassurance-text span { font-size: 13px; color: #6b7177; }

/* Séparateurs verticaux entre les items (desktop) */
@media (min-width: 783px) {
    .eco-reassurance-item:not(:first-child) {
        border-left: 1px solid var(--eco-border, #e6e6e6);
    }
}

/* Mobile : empilé, aligné à gauche */
@media (max-width: 782px) {
    .eco-reassurance { padding: 20px 0; }
    .eco-reassurance-grid { grid-template-columns: 1fr; gap: 16px; }
    .eco-reassurance-item { justify-content: flex-start; }
}