/*
 * Hides the "Role" filter group from the Aircraft Encyclopedia browse page
 * (theaviationdiary.com/aircraft/) without touching the underlying
 * aircraft_role taxonomy or its data. Purely cosmetic / frontend-only —
 * Role terms remain fully intact in wp-admin and in the database.
 *
 * Deploy via WPCode: Code Snippets -> Add Snippet -> choose "CSS Snippet"
 * type, paste this in, set location to "Site Wide Footer" (or any
 * frontend location), Activate.
 *
 * This targets the FIRST .tade-browse-group inside .tade-browse-hub,
 * since Role is currently first in the template's output order
 * (Role, Category, Era, Status, Country). If the plugin is ever updated
 * to reorder these groups, this rule would need to be re-targeted.
 */
.tade-browse-hub > .tade-browse-group:first-of-type {
	display: none !important;
}