.ezizz-badge-outer {
    display: flex;
    width: 100%;
}

.ezizz-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--ezizz-badge-color, #2ee6a8);
    background: var(--ezizz-badge-bg, rgba(46,230,168,.08));
    border: 1px solid var(--ezizz-badge-border, rgba(46,230,168,.35));
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    transition: background .15s ease, border-color .15s ease;
}

a.ezizz-badge:hover {
    background: var(--ezizz-badge-border, rgba(46,230,168,.35));
}

.ezizz-badge--uppercase {
    text-transform: uppercase;
}

.ezizz-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ezizz-badge-dot, #2ee6a8);
    flex-shrink: 0;
}