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

body {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.65;
	color: #333;
	background: #fff;
}

a         { color: #456789; }
a:visited { color: #456abc; }
a:hover,
a:focus,
a:active  { color: #abcdef; }

/* layout */
.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

/* header */
#head {
	text-align: center;
	padding: 20px 0 16px;
}

#brand h1 {
	margin: 0;
	font-size: 2em;
}

#brand h1 a {
	color: #000;
	text-decoration: none;
}

#brand h1 a:hover,
#brand h1 a:focus { color: #456789; }

#brand h2 {
	margin: 4px 0 0;
	font-size: 0.95em;
	font-weight: normal;
	color: #555;
}

/* nav */
#navigator {
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
	margin-bottom: 16px;
}

#navigator ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigator li { display: inline; margin-right: 16px; }

#navigator a {
	color: #333;
	text-decoration: none;
	font-size: 0.9em;
}

#navigator a:hover,
#navigator a:focus { color: #999; }

#navigator .current_page_item a { color: #666; }

/* content */
#content { padding: 0 0 20px; }

.section .head h1 {
	font-size: 1.3em;
	color: #000;
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
	margin-top: 0;
	margin-bottom: 12px;
}

/* photo / caption */
.wp-caption {
	font-size: 0.85em;
	text-align: center;
	margin: 0;
}

.wp-caption.alignright {
	float: right;
	margin: 0 0 16px 20px;
}

.wp-caption-text {
	margin: 4px 0 0;
	color: #666;
}

/* post meta (date) */
.post_meta {
	clear: both;
	margin-top: 20px;
	font-size: 0.85em;
	color: #666;
}

.post_meta a { color: #666; }

/* pagination */
.pagination {
	overflow: hidden;
	border-top: 1px solid #eee;
	padding-top: 10px;
	margin-top: 10px;
	font-size: 0.9em;
}

.alignleft  { float: left; }
.alignright { float: right; }

/* footer */
#foot {
	border-top: 1px solid #ddd;
	padding: 16px 0;
	margin-top: 10px;
	font-size: 0.85em;
	color: #666;
}

#foot .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

#institutional ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#institutional li { display: inline; margin-right: 12px; }

#institutional a {
	color: #555;
	text-decoration: none;
}

#institutional a:hover,
#institutional a:focus { color: #333; }

#copyright p { margin: 0; }

/* responsive */
@media (max-width: 720px) {
	.wp-caption.alignright {
		float: none;
		margin: 0 0 16px 0;
		display: block;
	}

	#foot .container {
		flex-direction: column;
		align-items: flex-start;
	}
}
