/* CRITICAL FIX: Remove 172x172 badge/text from profile */
/* This file must be loaded AFTER style.css to override the minified CSS */

/* Remove pseudo-elements from PROFILE (not just image) - THIS IS THE FIX! */
.card-started .profile:before,
.card-started .profile:after,
.card-started .profile::before,
.card-started .profile::after,
.card-started .profile .image:before,
.card-started .profile .image:after,
.card-started .profile .image::before,
.card-started .profile .image::after {
    content: none !important;
    content: "" !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    font-size: 0 !important;
    color: transparent !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Hide any text content inside image container */
.card-started .profile .image {
    font-size: 0 !important;
    color: transparent !important;
    overflow: hidden !important;
}

/* Ensure only the image shows */
.card-started .profile .image img {
    font-size: 0 !important;
    position: relative !important;
    z-index: 999 !important;
}

/* Hide any spans or divs that might contain dimension text */
.card-started .profile .image span,
.card-started .profile .image div:not(.image) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Made with Bob */
