/*
 * MissionOS Glossary — component styles.
 * Only loaded on the "Glossary" page template (see
 * missionos_enqueue_glossary_assets() in functions.php), same pattern
 * as css/mobile-manual.css and css/videos.css. Everything else on the
 * Glossary page is expressed with Tailwind utility classes already
 * present in the theme.
 */

.az-link.is-current {
	background-image: linear-gradient(135deg, #fd5902 0%, #ff8a3d 100%);
	color: #fff;
	border-color: transparent;
}
.az-link.is-current:hover { 	color: #fff;}
.dark .az-link.is-current {
	background-image: linear-gradient(135deg, #fd5902 0%, #ff8a3d 100%);
}
.az-link.is-empty {
	opacity: 0.35;
	pointer-events: none;
}

mark.gterm-hit {
	background: rgba(79, 70, 229, 0.18);
	color: inherit;
	border-radius: 3px;
	padding: 0 2px;
}
.dark mark.gterm-hit {
	background: rgba(129, 140, 248, 0.28);
}
