/* Targets the paragraph immediately preceding the badges container */
p:has(> #badges-container) {
    display: none !important;
}

/* Alternative: If your browser/system is older and doesn't support :has */
#badges-container {
    display: none; /* This hides the badges too */
}