.sub header {
	padding: 30px 0;
	background-color: var(--bgLight);
}

.breadcrumbs {
	font-size: 0.85rem;
	line-height: 1;
	color: hsl(0 0% 50%);
}

.breadcrumbs a {
	text-decoration: none;
	color: var(--textColor);
	transition: color .2s;
}

.breadcrumbs a:hover {color: var(--primary);}

.breadcrumbs span {
	font-family: monospace;
	font-size: .65rem;
	font-weight: bold;
	margin-inline: 1em;
	color: var(--primary);
}

.breadcrumbs strong {font-weight: normal;}


.lead {
	line-height: 1.4;
}


aside, .sub main {
	padding: calc(var(--sectionPadding) / 2) 0;
}

.sub h1 {
	margin-top: 0;
	margin-bottom: 30px;
}

aside > h4 {
	font-size: var(--h3);
	margin-top: 0;
}

aside .nav {
	margin: 0;
	padding: 0;
	width: 100%;
}

aside .nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

aside .nav a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	line-height: 1.3;
	padding: 10px 25px;
	text-decoration: none;
	border-left: 2px solid var(--borderColor);
	transition: all .2s;
	color: var(--textColor);
}

aside .nav a:hover,
aside .nav .active > a,
aside .nav a.active {
	border-left-color: var(--primary);
}

aside .nav a:hover {
	padding-left: 30px;
	padding-right: 20px;
}

aside .nav .active > a,
aside .nav a.active {color: var(--primary);}


.gallery a {
	overflow: hidden;
	border-radius: var(--borderRadius);
}

.gallery img {
	display: block;
	width: 100%;
	transition: all var(--normalSpeed) var(--ease);
}

.gallery a:hover img {
	transform: scale(1.1);
}


.downloads a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 15px 30px;
	text-decoration: none;
	color: var(--textColor);
	transition: all var(--fastSpeed);
	box-shadow: 0 0 30px hsl(0, 0%, 0%, .1);
	border-radius: var(--borderRadius);
}

.downloads a:hover {
	color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 15px 20px -5px hsl(0, 0%, 0%, .2);
}

.downloads a img:not(.download-icon) {
	height: 52px;
	border-radius: 0;
}

.download-icon {
	height: 18px;
	display: block;
	margin-left: 30px;
	border-radius: 0;
	filter: grayscale(1);
}

.downloads .size {
	opacity: .6;
	font-size: 0.875rem;
}

.downloads .text {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 30px;
}

.downloads strong {
	font-weight: 400;
	line-height: 1.3;
	display: block;
	padding-right: 30px;
}

form {
	width: 100%;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

label {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 1.125rem;
}

label p {
	margin: 0;
}

label a {
	text-decoration: none;
	color: var(--primary);
}

label p,
label li {
	font-size: 0.875rem;
	line-height: 1.5;
}

label li {
	margin-bottom: 0.5em;
}

input,select,textarea {
	width: 100%;
	box-sizing: border-box;
	padding: .8rem 1rem;
	border: 2px solid var(--borderColor);
	border-radius: .25rem;
}

[type="checkbox"],
[type="radio"] {
	width: auto;
	flex-shrink: 0;
}

textarea {
	height: 15.3rem;
}

.ok {
	border-color: var(--borderColor);
}

.error {
	border-color: red;
}

.error-msg {
	color: red;
	font-size: 1rem;
	margin-top: 5px;
}

.star {
	color: red;
	font-family: sans-serif;
}

#alert {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5rem 1rem;
	color: white;
	font-weight: bold;
}

#alert.success {
	background-color: rgb(0, 133, 22);
}


#alert.danger {
	background-color: rgb(165, 0, 0);
}


.card {cursor: pointer;}

.card-image {
	overflow: hidden;
	border-radius: var(--borderRadius);
}

.card-image img {
	transition: all .7s var(--ease);
}

.card:hover .card-image img {transform: scale(1.1);}

aside .card-title--link {text-decoration: none;}

aside .card-title {font-size: var(--h5);}

aside .card-image {
	aspect-ratio: 10/5;
	margin-bottom: 20px;
}

aside .card + .card {margin-top: 30px;}







/*

			M E D I A
			Q U E R I E S

*/



@media screen and (max-width: 1023px) {
	aside {order: 999}

	table {
		display: block;
		width: 100%;
		overflow-x: auto;
	}

	th, td {
		font-size: clamp(.75rem, 1rem, 1rem);
		line-height: 1.3;
		padding: 0.5em;
	}
}




@media screen and (max-width: 590px) {
	.download-icon, .downloads .size {display: none;}

	.downloads a {
		padding: 15px;
	}

	.downloads .text {
		margin-left: 15px;
	}

	.downloads strong {
		padding-right: 0;
		font-size: 0.875rem;
	}

	.downloads a img:not(.download-icon) {
		height: 30px;
	}

	.sub h1 {font-size: var(--h3)}
	.sub h2 {font-size: var(--h4)}
	.sub h3 {font-size: var(--h5)}
	.sub h4 {font-size: var(--h6)}
	.sub h5 {font-size: var(--h6)}

	.breadcrumbs {
		font-size: 0.75rem;
		line-height: 2;
		color: hsl(0 0% 50%);
	}
}