/* Add a Font Awesome star icon to the first author's userGroup span */
.obj_article_details .authors li:first-child .name::before {
    content: "\f005"; /* Unicode for solid star in Font Awesome */
    font-family: "FontAwesome"; /* Font family loaded by OJS pkp stylesheet */
    font-weight: 900;
    color: #f39c12; /* Star color (gold/yellow) */
    margin-left: 6px;
    font-size: 12px;
}
.obj_article_details .authors li .name::before {
    content: "\f005 \f005"; /* Unicode for solid star in Font Awesome */
    font-family: "FontAwesome"; /* Font family loaded by OJS pkp stylesheet */
    font-weight: 900;
    color: #f39c12; /* Star color (gold/yellow) */
    margin-left: 6px;
    font-size: 12px;
}
.item.authors .authors li .userGroup { display: none; }