/**
 * Carbon Based Studio — site layout shell.
 */

:root {
	--cbs-brand: #195a5b;
	--cbs-brand-hover: #134a4b;
	--cbs-brand-active: #0f3d3e;
	--cbs-brand-contrast: #fff;
	--cbs-brand-muted: rgba(255, 255, 255, 0.72);
	--cbs-brand-tab-track: #134a4b;
	--cbs-content-max-width: 1200px;
	--cbs-content-gutter: 20px;
	--cbs-font-size-meta: 14px;
	--cbs-font-size-nav: 14px;
	--cbs-nav-track-height: 44px;
	--cbs-nav-tab-height: 41px;
	--cbs-nav-tab-radius: 3px;
	/* Layout breakpoints: mobile ≤1024px (CBS Mobile Menu); desktop ≥1025px. */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--cbs-text, #3a3a3a);
	background: #fff;
	font-family: var(--cbs-font-family-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
	font-size: var(--cbs-font-size-body, 16px);
	font-weight: var(--cbs-font-weight-body, 400);
	line-height: var(--cbs-line-height-body, 1.65);
}

a {
	color: var(--cbs-brand);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--cbs-brand-hover);
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-content {
	flex: 1 1 auto;
	background: #fff;
}

.cbs-container {
	width: 100%;
	max-width: var(--cbs-content-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--cbs-content-gutter);
	padding-right: var(--cbs-content-gutter);
}

.content-area {
	width: 100%;
}

.site-main {
	width: 100%;
}

@media (min-width: 1200px) {
	.content-area #primary {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
