/* =========================================
   Cybernettic - Pastilles v1.0.0
   https://cybernettic.fr
   ========================================= */

.cybernettic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 8px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Verte */
.badge-green {
    background-color: #e6f4ea;
    color: #1a7a36;
    border: 1px solid #a8d5b5;
}
.badge-green svg {
    flex-shrink: 0;
    stroke: #1a7a36;
}

/* Orange */
.badge-orange {
    background-color: #fff3e0;
    color: #b45309;
    border: 1px solid #f6c47a;
}
.badge-orange svg {
    flex-shrink: 0;
    stroke: #b45309;
}

/* Bleue */
.badge-blue {
    background-color: #e8f0fe;
    color: #1a56db;
    border: 1px solid #93b4f8;
}
.badge-blue svg {
    flex-shrink: 0;
    stroke: #1a56db;
}
