/*
 * Keep the four top tabs on one row.
 * WordPress emits NEWS in a second UL; display:contents folds both
 * lists into the 4-column bar.
 */

#access > .menu {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#access > .menu > ul {
	display: contents !important;
}

#access > .menu > ul > li {
	min-width: 0;
}

@media (max-width: 760px) {
	#access > .menu {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
