/********************************************************* 
	common content elements
*********************************************************/

.meta-content {
	margin-bottom: .5rem;
	font-family: var(--font-label);
	font-size: var(--font-size-xs);
	font-weight: 400;
	line-height: 1rem;
}

.meta-content a {
	color: var(--brand-secondary);
	text-decoration: none;
}

.post-title a,
.subhead a {
	text-decoration: none;
}

.post-title a:hover,
.meta-content a:hover,
.subhead a:hover {
	text-decoration: underline;
}

.post-date {
	color: var(--gray-800);
}

.read-more {
	font-family: var(--font-label);
	font-size: var(--font-size-sm);
	font-weight: 400;
	line-height: 1rem;
	text-decoration: none;
	display: flex;
	gap: .25rem;
	color: var(--brand-secondary);
}

.read-more:hover {
	text-decoration: underline;
}

.post-intro {
	position: relative;
	min-height: 9rem;
	display: flex;
	justify-content: center;
	color: var(--text-white);
	background-color: var(--brand-primary-darker);
}

.page-header.post-intro {
	padding: 3rem 0;
}

@media (min-width:768px) {
	
	.post-intro {
		min-height: 13.5rem;
	}

	.has-intro-text {
		min-height: 16rem;
	}
}

@media (orientation: portrait) {

	.post-intro {
		flex-direction: column;
	}
}

@media (orientation: landscape) {

	.post-intro .post-thumbnail,
	.post-intro .text-content {
		width: 50vw;
	}
}

.post-intro .post-title:only-child {
	margin: 0;
}

.post-intro .text-content:only-child {
	width: 1140px;
	max-width: 100%;
	padding: 0px 36px;
}

@media (max-width:960px) {
    .post-intro .text-content:only-child {
        padding: 0 1.5rem;
    }
}

@media (max-width:768px) {
    .post-intro .text-content:only-child {
        padding: 0 1.25rem;
    }
}

.post-intro a {
	color: inherit;
	text-decoration: none;
}

.post-intro .post-thumbnail {
	display: block;
	overflow: hidden;
	aspect-ratio: 16/9;
	background-color: var(--true-black);
}

.post-intro .post-thumbnail img { 
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 1s;
	transform: scale(1);
}

.post-intro a.post-thumbnail:hover img {
	transform: scale(1.08);
}

.post-intro .post-meta,
.post-intro .post-excerpt {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--gray-600);
}

.post-intro .post-title {
	margin-bottom: 1rem;
}

.post-intro .text-content {
	padding: 60px;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.post-intro + .container {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

@media (max-width:960px) {
	
	.post-intro .text-content {
		padding: 2rem 1.25rem;
	}
}

.post-excerpt p {
	margin: 0 0 1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	align-self: stretch;
	overflow: hidden;
}

.entry-summary p {
	margin: .75rem 0 1rem;
}
 
.page-header .taxonomy-description h1,
.page-header .taxonomy-description h2, 
.page-header .taxonomy-description h3, 
.page-header .taxonomy-description h4 {
	margin: 1rem 0;
	font-size: var(--font-size-base);
	line-height: 150%;
}

/********************************************************* 
	common author elements
*********************************************************/
img.avatar {
	display: block;
	border-radius: 100%;
	border: 4px solid #FFF;
	box-shadow: var(--drop-shadow-lg);
}

.author-header .container {
	padding-top: 3rem;
	padding-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	gap: 2.5rem;
}

.author-posts-heading {
	margin-top: 1.5rem;
}


@media (max-width: 768px) {

	.author-header .container {
		padding-top: 2rem;
		padding-bottom: .5rem;
		flex-flow: column;
		align-items: center;
		align-content: center;
		justify-content: center;
		gap: 1rem;
		text-align: center;
	}

	.author-header img.avatar {
		width: 5rem;
		height: 5rem;
	}

	.author-header p {
		font-size: var(--font-size-sm);
		line-height: 142.857%;
	}
}

.aligncenter, 
.alignleft, 
.alignright {
	margin-bottom: 1.5rem;
	display: block;
}

.alignleft {
	float: left;
	margin-right: 1.5rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
}

figure img {
	display: block;
}

figure figcaption {
	margin-top: .25rem;
	font-size: .75rem;
	font-family: var(--font-label);
	display: block;
}

@media (max-width: 768px)  {
	.alignleft, 
	.alignright {
		max-width: 100%;
		margin: 0 0 1.5rem;
		float: none;
	}

	figure img {
		max-width: 100%;
	}
}

.entry-content.no-sidebar {
	max-width: 768px;
	margin: auto;
}

.entry-content iframe {
	max-width: 100%;
	margin-bottom: 1em;
}

/* generic post feeds */

hr:first-child {
	display: none;
}

hr:first-child + article {
	margin-top: 1.5rem;
}

.archive-tag-title {
	text-transform: capitalize;
}

.feed-container .wp-post-image {
	margin: 0 0 .5rem .5rem;
	float: right;
}

.feed-container article:after {
	width: 100%;
	display: block;
	clear: both;
	content: "";
}


/********************************************************* 
	videos archive
*********************************************************/
.archive .feed-container .videos {
	overflow: hidden;
}

.feed-container .videos .wp-post-image {
	width: 20%;
	float: left;
	margin: 0 2rem 0 0;
}

/********************************************************* 
	error page
*********************************************************/
.error404 .page-header {
	align-items: center;
	text-align: center;
	background-color: var(--brand-secondary);
}

.error404 .page-content {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	text-align: center;
}


/********************************************************* 
	pagination
*********************************************************/
.pagination {
	margin: 1.5rem 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gray-300);
}

.pagination .nav-links {
	display: flex;
	gap: .5rem;
}

.pagination .page-numbers {
	min-width: 2.5rem;
	height: 2.5rem;
	padding: .5rem;
	font-family: var(--font-label);
	font-size: var(--font-size-sm);
	font-weight: bolder;
	line-height: 1.375rem;
	text-align: center;
	text-decoration: none;
	display: block;
	overflow: hidden;
	background-color: var(--gray-200);
	border: 1px solid var(--gray-300);
	border-radius: .25rem;
	transition: var(--basic-transition);
}

.pagination .page-numbers:hover {
	color: #fff;
	background-color: var(--brand-primary);
	border-color: var(--brand-primary);
}

.pagination .page-numbers:not(.current):focus {
	color: #fff;
	background-color: var(--brand-primary);
	border-color: var(--brand-primary);
	box-shadow: var(--focus-ring-md) var(--brand-primary-highlight);
}

.pagination .page-numbers.current {
	pointer-events: none;
	background-color: transparent;
	border-color: transparent;
}

.pagination .prev,
.pagination .next {
	position: relative;
	text-align: left;
	text-indent: -9000em;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.6734 7.33334H2.66675V8.66668H10.6734V10.6667L13.3334 8.00001L10.6734 5.33334V7.33334Z' fill='%23204682'/%3E%3C/svg%3E");
}
	
.pagination .prev:hover,
.pagination .next:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.6734 7.33334H2.66675V8.66668H10.6734V10.6667L13.3334 8.00001L10.6734 5.33334V7.33334Z' fill='%23fff'/%3E%3C/svg%3E");
}

.pagination .prev {
	transform: scaleX(-1);
}

/**/
.page-header-search {
	text-align: center;
	background-color: var(--text-black);
}

.search-filters,
.search-filter-nav {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	gap: .5rem;
}

.search-filters {
	position: sticky;
	top: 76px;
	z-index: 5;
	padding: .5rem;
	background-color: var(--text-white);
	border-top: 1px solid var(--gray-300);
	border-bottom: 1px solid var(--gray-300);
}

.search-filter-nav .button {
	background-color: var(--true-white);
}

.search-filter-nav .button.current {
	color: var(--true-white);
	border-color: var(--gray-600);
	background-color: var(--gray-600);
}

.excerpt_part strong {
	background-color: rgba(218, 165, 32, .2);
}

@media (max-width: 768px) {
	
	.search-filters {
        top: 60px;
        width: 100vw;
        overflow: auto;
        justify-content: flex-start;
	}
}

/* videos */
article.videos {
	overflow: hidden;
}

body.search-results .post .post-thumbnail,
article.videos .post-thumbnail {
	margin-left: 1.5rem;
	float: right;
}

/* miscellaneous */
.view-all-link {
	display: flex;
	justify-content: center;
}

.view-all-link .button {
	width: auto;
}

.single-category .post-intro .container-sm {
	max-width: 960px;
}