.topbar {
	display: block;
	background-color: #444;
	height: 30px;
	margin-bottom: 100px;
}
.center {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 30px;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 30px;
}
.center h1 {
	grid-column: span 2;
	font-weight: 500;
	font-size: 1.6em;
	letter-spacing: -0.02em;;
}
.center h1 a { color: #444; }

.center h1 span { font-weight: 400; }

.center ul.mainnav {
	grid-column: span 10;
	display: flex;
	align-items: center;
	font-size: 1em;
	font-weight: 300;
	gap: 3px;
	margin-bottom: 10px;
}
.center ul.mainnav a {
	display: block;
	padding: 8px 12px;
}
.center ul.mainnav a:hover { background: #eee; }

.center ul.mainnav li.current a { background: #444; color: #fff; }

.center blockquote {
	grid-column: 1/-1;
	font-weight: 300;
	line-height: 1.45em;
	letter-spacing: -0.01em;
	font-size: 1.75em;
	color: #5e5e5e;
}
.center h2.location {
	grid-column: 1/-1;
	font-weight: 300;
	font-size: 1.4em;
	letter-spacing: -0.01em;
	margin-bottom: 8px;
	color: #8c8c8c;
}
main, aside { display: grid; gap: 30px; align-self: start; }

main { grid-column: span 9; }

aside { grid-column: span 3; }

main.default { grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) ); }

main.default .item { font-size: 0.9em; font-weight: 300; }

main.default .item a {
	display: block;
	height: 300px;
	color: #444;
	background-size: cover;
  	background-position: center;
  	background-repeat: no-repeat;
	background-color: #eee;
}
main.default .item a span.item-title {
	display: inline;
	background: #fff;
	padding: 0 10px 5px 0;
}

/* MENU FRAME */
aside { border-left: solid 1px #ddd; align-self: start; }

aside .menu-frame { border-bottom: solid 1px #ddd; padding: 0 0 25px 30px; }

aside .menu-frame:last-of-type { border-bottom: none; padding: 0 0 25px 30px; }

aside .menu-frame h3 { font-weight: 200; margin-bottom: 15px; }

aside .menu-frame ul { font-weight: 300; line-height:1.7em; }

aside .menu-frame ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
aside .menu-frame ul li.current a { font-weight: 300; color: #444; }

aside .menu-frame ul li span.count {
	font-family: 'Source Sans 3', sans-serif;
	font-style: italic;
	font-size: 0.9em;
}
aside .menu-frame ul li .label i { margin-right: 5px; }

aside .menu-frame ul.plain-list li {
	justify-content: start;
	gap: 5px;
	font-size: 0.95em;
}
aside .menu-frame ul.glazes-used i { margin-right: 5px; }

aside .menu-frame p {
	font-weight: 300;
	line-height: 1.5em;
	font-size: 0.95em;
	font-family: 'Source Sans 3', sans-serif;
	font-style: italic;
}
aside .menu-frame p i { margin-right: 5px; }

/* Pagination */
section.pagination { grid-column: span 12; }

section.pagination h3 { margin-bottom: 10px; }

section.pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	font-size: 0.9em;
}
section.pagination ul li.current a { background: #444; color: #fff; }

section.pagination ul li.current a:hover { background: #444; color: #fff; }

section.pagination ul li a:hover { background-color: #ddd; }

section.pagination ul li a {
	display: block;
	padding: 6px 10px;
	background-color: #eee;
}
main.single { grid-template-columns: repeat(12, 1fr); }

main.single .content p {
	line-height: 1.6em;
	font-weight: 300;
	margin-bottom: 20px;
}
aside span.index-num {
	background: #444;
	color: #fff;
	display: flex;
	padding: 2px 5px 2px 4px;
	line-height: 1rem;
	font-size: 0.9em;
	font-weight: 400;
}
aside ul li.categorization {
	justify-content: start;
	align-items: start;
	flex-direction: column;
}
aside ul li.categorization span {
	display: flex;
	flex-direction: column;
	font-family: 'Source Sans 3', sans-serif;
	font-style: italic;
	line-height: 1.4em;
	padding-left: 10px;
	border-left: solid 1px #ddd;
}
main.single .img-first {
	grid-column: span 5;
	height: 350px;
}
main.single .img-second {
	grid-column: span 7;
	height: 350px;
}
main.single .img-first, main.single .img-second {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
main.single .music { grid-column: span 5; }

main.single .music h4 { font-weight: 400; margin-bottom: 10px; }

main.single .music ul { font-weight: 300; line-height: 1.5em;; }

main.single .music ul li strong { font-weight: 400; }

main.single .music p {
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.9em;
	font-style: italic;
	color: #999;
}
main.single .music p i { margin-right: 5px; }

main.single .content { grid-column: span 7; }

main.single .content .process-notes {
	border-top: solid 1px #ddd;
	padding-top: 20px; margin-top: 20px;
}

/* This is the lightboxy styles for pictures */
/* Simple overlay "lightbox" */
/* Prevent background scroll when lightbox is open */
body.brh-lightbox-open { overflow: hidden; }

.brh-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-out;
	z-index: 9999;
}
.brh-lightbox-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.brh-lightbox-inner {
	max-width: 90vw;
	max-height: 90vh;
}
.brh-lightbox-inner img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border: solid 2px #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* ARCHIVE CHUNK */
main.page-archives { grid-template-columns: repeat( auto-fill, minmax(250px, 1fr) ); align-self: start; }

.archive-chunk {
	border-right: solid 1px #ddd;
	padding-right: 30px;
}
.archive-chunk.last {
	border-right: none;
	padding-right: 0;
}
.archive-chunk.content-by-numbers {
	border-right: none;
	padding-right: 0;
}
.archive-chunk h4 {
	margin-bottom: 15px;
	font-weight: 400;
}
.archive-chunk ul {
	font-weight: 300;
	line-height: 1.6em;
}
.archive-chunk ul li {
	display: flex;
	justify-content: space-between;
}
.archive-chunk ul li.current { font-weight: 400; color: #444; }

.archive-chunk ul li.current a { font-weight: 400; color: #444; }

.archive-chunk ul li span.count {
	font-family: 'Source Sans 3', sans-serif;
	font-style: italic;
	font-size: 0.9em;
}
.archive-bits {
	grid-column: 1/-1;
	display: grid;
	gap: 30px;
	grid-template-columns: repeat( auto-fill, minmax(150px, 1fr) );
	border-top: solid 1px #ddd;
	padding-top: 30px;
}
.archive-bits .bit {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.archive-bits .bit a {
	display: block;
	height: 150px;
}

/* Footer */
footer {
	grid-column: 1/-1;
	font-size: 0.9em;
	border-top: solid 1px #ddd;
	padding-top: 30px; margin-bottom: 300px;
}

@media (max-width: 1024px) {
	main { grid-column: span 12; }
	aside { grid-column: span 12; }
	aside { border-left: none; }
	aside .menu-frame { border-bottom: solid 1px #ddd; padding: 0 0 25px 0; }
	aside .menu-frame:last-of-type { border-bottom: none; padding: 0 0 25px 0; }
}
@media (max-width: 768px) {
	.center h1 { grid-column: span 12; }
	.center ul.mainnav { grid-column: span 12; }
	.center blockquote { font-size: 1.2em; }
	main.single .img-first { grid-column: span 12; }
	main.single .img-second { grid-column: span 12; }
	main.single .music { grid-column: span 12; }
	main.single .content { grid-column: span 12; }
	.archive-chunk { border-right: none; padding-right: 0; }
}
@media (max-width: 540px) {
	.center ul.mainnav { display: block; align-items: start; }
	.center ul.mainnav li { margin-bottom: 3px; }
	.center ul.mainnav a { background: #eee; }
	.topbar { background-color: #fff; margin-bottom: 30px; }
}