.ep-badge-wrapper {
    display: block;
    width: 100%;
}

.ep-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ep-badge-circle {
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.ep-badge-circle.ep-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.8;
    animation: ep-pulse-animation 2s infinite ease-in-out;
}

.ep-badge-text {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

@keyframes ep-pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
