.exf-badges-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 100%;
}
.exf-badges-container.exf-badges-inline {
    flex-direction: row;
}
.exf-badges-container.exf-badges-list {
    flex-direction: column;
}

/* ESTILO: Píldora (Pill Outline) */
.exf-badge-item.exf-badge-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    background-color: transparent;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.exf-badge-item.exf-badge-pill .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ESTILO: Bloque Sólido (Solid Block) */
.exf-badge-item.exf-badge-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    line-height: 1;
}

.exf-badge-acreditacion-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.exf-badge-acreditacion-text::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: currentColor;
}
