/* Header layout: true center-aligned nav regardless of logo/button widths */
.cotu-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	max-width: 96rem; /* wider than the site's usual max-w-7xl (80rem) content wrapper, so the
	                      header uses more of the page on large screens instead of letterboxing */
}
.cotu-header-inner > a {
	justify-self: start;
}
.cotu-header-inner > nav[aria-label="Main"] {
	justify-self: center;
}
.cotu-header-actions {
	justify-self: end;
}
