.p-categories{
    display:flex !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:8px !important;
}

.mfvc-post-badge{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;

    background:#1e293b !important;
    color:#ffffff !important;

    padding:6px 14px !important;

    border-radius:999px !important;

    font-size:13px !important;
    font-weight:700 !important;
    line-height:1 !important;

    white-space:nowrap !important;

    margin:0 !important;
    vertical-align:middle !important;
}

.mfvc-live-dot{
    width:8px !important;
    height:8px !important;

    background:#22c55e !important;

    border-radius:50% !important;

    flex-shrink:0 !important;

    animation:mfvcPulse 1.5s infinite;
}

.mfvc-count-text{
    display:flex !important;
    align-items:center !important;

    color:#ffffff !important;

    line-height:1 !important;
}

@keyframes mfvcPulse{

    0%{
        box-shadow:0 0 0 0 rgba(34,197,94,.7);
    }

    70%{
        box-shadow:0 0 0 8px rgba(34,197,94,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(34,197,94,0);
    }
}