* {
	box-sizing: border-box;
}
body {
	margin: 15px;
	background-color: #11242b;
	font-family: sans-serif;
	font-size: 14px;
	display: flex;
	justify-content: center;
}
div, td {
	font-family: sans-serif;
	font-size: 14px;
}
table {
	border: 0;
}
th {
	text-align: left;
	font-size: 14px;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	border-left: 1px solid black;
	padding: 2px 4px;	
}
th.last {
	border-right: 1px solid black;	
}
td {
	border-bottom: 1px solid black;
	border-left: 1px solid black;
	padding: 2px 4px;	
}
td.last {
	border-right: 1px solid black;	
}
img {
	border: 0;
}
h1 {
	margin: 0;
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 10px;
	border-top: 2px solid #7b0d00;
	border-bottom: 2px solid #7b0d00;
	padding: 5px 0;
}
h1 span.subtitle {
	font-size: 12px;
}
h2 {
	font-size: 15px;
	margin: 0 0 5px 0;
}
h3 {
	margin: 0 0 5px 0;
}
h4 {
	margin: 0 0 5px 0;
}
p {
	margin: 0 0 10px 0;
}

div.outer {
	width: 100%;
	max-width: 900px;
	background-color: #fff;
	background-image: url('/images/grad.gif');
	background-position: right;
	background-repeat: repeat-y;
	padding-right: 16px;
}
nav.head {
	background-color: #7b0d00;
	border-bottom: 8px solid #11242b;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 8px;
	gap: 1em;

	.logo {
		display: flex;
		gap: .5em;
		color: #fff;
		max-height: 40px;
		align-items: end;
	}

	.logotype {
		line-height: 12px;
	}

	ul {
		list-style-type: none;
		display: flex;
		margin: 0;
		padding: 0;
		gap: 14px;
	}
	
	a.nav {
		background-color: white;
		display:block;
	}
	a.nav.text {
		font-size: 9px;
		text-decoration: none;
		padding: 1px 3px;
		color: #0b1218;
		text-transform: uppercase;
		font-weight: bold;
	}
}

div.subnav {
	margin-bottom: 10px;
}
main {
	background-color: #ffffff;
	color: #0b1218;
	min-height: 100vh;
	padding: 1em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 0 10px 0;
}

/** records **/
.record {
	display: flex;
 	border-bottom: 1px solid #11242b;
	margin-bottom: 2em;
	padding-bottom: 2em;
	gap: 1em;

	.hubs {
		flex: 1;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5px;
		justify-items: center;
	}
	.description {
		flex: 1;
	}
	.description.cols-2 {
		display: flex;
		flex-wrap: wrap;
		gap: 1em;
	}
}


/** studio **/
div.gear img {
	float: left;
	margin-right: 10px;
	max-width: 100%;
	height: auto;
}
div.gear {
	margin: 20px 0;
	float: left;
	clear: both;
}

/** videos **/
div.video {
	margin-bottom: 25px;

	.video-container {
		width: 100%;
		max-width: 700px;
		aspect-ratio: 16 / 9;
	}

	iframe {
		width: 100%;
		height: 100%;
		border: none;
	}
}

/** buy **/
.stores ul {
	font-size: 16px;
	list-style-type: square;

	li {
		margin: 1em 0;
	}

	a {
		color:blue;
	}
	a:visited {
		color:blue;
	}
}

@media screen and (max-width: 700px) {
	nav.head .logotype {
		display: none;
	}
	.record .hubs {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 480px) {
	nav.head .logo img {
		max-height: 25px;
	}
	.record .hubs {
		grid-template-columns: repeat(1, 1fr);
	}
	nav.head ul {
		gap: 5px;
	}
	ul img {
		max-height: 35px;
	}
	nav.head a.nav.text {
		font-size: 8px;
	}
	.record .hubs img {
		max-width: 150px;
	}
}