.ic-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.95rem;
    background: radial-gradient(circle at 30% 20%, rgb(var(--slate-900-rgb)), var(--bg));
    box-shadow:
        0 0 0 1px var(--border),
        0 10px 25px var(--black-75);
}

.ic-badge--iconoir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}

.ic-badge--iconoir i {
    display: inline-flex;
    line-height: 1;
    font-size: 2.2rem;
}

.prestations .service h3 .ic-badge {
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    width: 4.15rem;
    height: 4.15rem;
    min-width: 4.15rem;
    min-height: 4.15rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.prestations .service h3 .ic-badge--iconoir i {
    font-size: 3rem;
}

.values .ic-badge,
.expertise .tick .ic-badge {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    min-height: 4rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mnav__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.prestations .service h3 .ic-badge--iconoir i,
.values .ic-badge--iconoir i,
.expertise .tick .ic-badge--iconoir i,
.mnav__icon i {
    display: inline-flex;
    line-height: 1;
    color: var(--yellow);
    filter: drop-shadow(0 6px 12px rgb(var(--black-rgb) / 0.18));
}

/* Alternance jaune / rose sur PRESTATIONS uniquement */
.prestations .service:nth-child(even) .ic-badge--iconoir i {
    color: rgb(var(--pink-rgb) / 0.96);
    filter: drop-shadow(0 6px 14px rgb(var(--pink-rgb) / 0.18));
}

@media (max-width: 760px) {
    .prestations .service h3 .ic-badge {
        width: 3.55rem;
        height: 3.55rem;
        min-width: 3.55rem;
        min-height: 3.55rem;
    }

    .values .ic-badge,
    .expertise .tick .ic-badge {
        width: 3.35rem;
        height: 3.35rem;
        min-width: 3.35rem;
        min-height: 3.35rem;
    }

    .mnav__icon {
        width: 54px;
        height: 54px;
    }

    .prestations .service h3 .ic-badge--iconoir i {
        font-size: 2.6rem;
    }
}