/**
 * KFM CATE - theme meta styling.
 *
 * Restyles the category link in the theme's post meta list (Neve markup) as a
 * small pill. Loaded site-wide when "Style the theme's category link" is on.
 */

:root {
	--usa-black: #000;
	--usa-white: #fff;
	--usa-blue: #305aae;
}

ul.nv-meta-list li.meta.category a {
	background: var(--usa-black);
	color: var(--usa-white);
	padding: 1px 10px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	transition: color .3s ease, background .3s ease;
}

ul.nv-meta-list li.meta.category a:hover,
ul.nv-meta-list li.meta.category a:focus {
	background: var(--usa-blue);
	color: var(--usa-white);
}
