/*** Fullscreen Page Loader ***/
.fullscreen-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	z-index: 9999999;
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
        
.fullscreen-loader .loader {
	font-size: 6px;
	margin: 5em 0;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #fbba37;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load-spin 1.1s infinite linear;
	animation: load-spin 1.1s infinite linear;
}

.fullscreen-loader .loader,
.fullscreen-loader .loader:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}

.fullscreen-loader > img {
	width: 265px;
}

.fullscreen-loader .load-text {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.3px;
	margin: 0;
	padding: 0;
}

@-webkit-keyframes load-spin {
	
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load-spin {
	
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*** Link Styles ***/
.plu-news-all-stories .story-details .story-title,
.plu-news-category-title > a,
.plu-news-category-stories .all-category-stories .category-story-wrapper .story-details .story-title {
	text-decoration: none;
	background-image: linear-gradient(to right, #ecbc5b, #fbba37);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	transition: all 0.3s ease-in-out;
}
.plu-news-all-stories .story-details .story-title:hover,
.plu-news-category-title > a:hover,
.plu-news-category-stories .all-category-stories .category-story-wrapper .story-details .story-title:hover {
	background-size: 100% 2px;
}

.plu-view-more-stories-link {
	background: #fff;
	border: 1px solid #cccccc;
	color: #151515;
	padding: 10px 20px;
	display: table;
	border-radius: 15px;
	font-size: 12px;
	font-family: "Aleo", serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 15px auto;
	text-align: center;
	line-height: 16px;
}
.plu-view-more-stories-link:hover {
	color: #000000;
	cursor: pointer;
}

/*** ---------- Featured Stories ----------- ***/

.plu-news-featured-stories-wrapper {
	padding: 0;
	margin: 0;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper {
	width: 100%;
	height: calc(100vh - 140px);
	position: relative;
}
    
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-image {
	width: 100%;
	height: inherit;
	background-size: cover;
	background-position: center;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-image-overlay {
	width: 100%;
	height: inherit;
	position: absolute;
	top: 0;
	background: linear-gradient(
		rgba(0, 0, 0, 0.0) 0%,
		rgba(0, 0, 0, 0.0) 50%,
		rgba(0, 0, 0, 0.3) 60%,
		rgba(0, 0, 0, 0.4) 70%,
		rgba(0, 0, 0, 0.5) 85%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details {
	width: 100%;
	position: absolute;
	bottom: 4.5em;
	padding: 0 2em;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-title {
	margin: 0 0 2px 0;
}

/* when featured story has a video */
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container {
	position: absolute;
	width: 100%;
	height: 0;
	background: rgba(0,0,0,0.8);
	z-index: 2;
	transition: height 0.5s ease-in-out;
}
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container.start-preview-video {
	height: 100%;
}
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container.start-preview-video .featured-story-video-position {
	top: 50%;
	transform: translate(-50%,-50%);
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container .featured-story-video-position {
	position: absolute;
	width: 90%;
	left: 50%;
	top: 0;
	transform: translate(-50%,-100%);
	transition: all 0.5s ease-in-out;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container .featured-story-video-position .featured-story-close-video-icon {
	position: absolute;
	bottom: -20px;
	right: 0;
	cursor: pointer;
	color: #fbba37;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	display: none;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container.start-preview-video .featured-story-video-position .featured-story-close-video-icon {
	display: block;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container .featured-story-video-position .featured-story-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container .featured-story-video-position .featured-story-video iframe,
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-video-container .featured-story-video-position .featured-story-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-play-video-icon {
	padding-bottom: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-play-video-icon:hover .play-video-icon {
	transform: scale(1.2);
	opacity: 1;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-play-video-icon .play-video-icon {
	color: #fbba37;
	font-size: 2em;
	margin-right: 10px;
	cursor: pointer;
	transform: scale(1);
	opacity: 0.85;
	transition: all 0.3s ease-in-out;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper.has-video .featured-story-play-video-icon .play-video-text {
	color: #fff;
	font-family: "Aleo", serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-title {
	font-size: 22px;
	color: #ffffff;
	font-weight: bold;
	margin-top: 0;
	padding-top: 0;
	text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}
.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-title:hover {
	background-size: 100% 2px;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-content {
	color: #ffffff;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-content .story-meta {
	margin: 0 0 10px 0;
	color: #ffffff;
	font-family: "Aleo", serif;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.5px;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-content .story-excerpt {
	font-size: 13px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 10px;
}

.plu-news-featured-stories .all-featured-stories .featured-story-wrapper .story-details .story-content .story-link {
	background: #fbba37;
	color: #151515;
	padding: 11px 12px 10px 12px;
	display: inline-block;
	border-radius: 4px;
	font-size: 12px;
	font-family: "Aleo", serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/*** ---------- Category Stories ----------- ***/

.plu-news-category-stories-wrapper {
	padding: 3em 0 1em 0;
}

/* category/section title */
.plu-news-category-title {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.plu-news-category-title > a {
	color: #111111;
}

.plu-news-category-title .news-from-display {
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #4a4a4a;
}

/* DISPLAY TYPE = DEFAULT */
.plu-news-category-stories[data-display-type="default"] {
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 2em;
	padding-bottom: 1em;
}
.plu-news-category-stories[data-display-type="default"]:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.plu-news-category-stories[data-display-type="default"] .plu-news-category-title {
	margin-bottom: 10px;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper {
	background: #f2f2f2;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 3px;
}
    
.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-image {
	display: none;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details {
	width: 100%;
	padding: 0;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details > h4 {
	line-height: 1;
	margin: 0 0 4px 0;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-title {
	font-size: 14px;
	color: #222222;
	font-weight: bold;
	margin-top: 0;
	padding-top: 0;
}
.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-title:hover {
	color: #000000;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-content {
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-content .story-meta {
	margin: 0;
	color: #595959;
	font-family: "Aleo", serif;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-content .story-excerpt,
.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper .story-details .story-content .story-link {
	display: none;
}

/* link (PLU in the News) post format type */
.plu-news-category-stories[data-display-type="default"][data-post-format-type="audio"] .all-category-stories .story-audio .plu-audio-player {
	width: 100%;
}

/* let's add a notifier type box above 'in the news' posts on the archive view to signify it is an external link */
.post-content-type-news .news-post-container.format-link > .news-post-content:before {
	content: 'PLU In The News';
	font-size: 11px;
	background: #fbba37;
	padding: 5px;
	display: inline-block;
	margin-bottom: 8px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 2px;
}

/* video post format type: default display */
.plu-news-category-stories[data-display-type="default"][data-post-format-type="video"] .all-category-stories .category-story-wrapper {
	background: transparent;
	padding: 0;
	margin-bottom: 10px;
	border-radius: 3px;
}

.plu-news-category-stories[data-display-type="default"][data-post-format-type="video"] .all-category-stories .category-story-wrapper .story-video {
	width: 100%;
	margin-bottom: 0;
}

.plu-news-category-stories[data-display-type="default"][data-post-format-type="video"] .all-category-stories .category-story-wrapper .story-details {
	background: #f2f2f2;
	padding: 10px;
	border-radius: 3px;
}

.plu-news-category-stories[data-display-type="default"][data-post-format-type="video"] .all-category-stories .category-story-wrapper .story-video .story-video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.plu-news-category-stories[data-display-type="default"][data-post-format-type="video"] .all-category-stories .category-story-wrapper .story-video .story-video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* link (PLU in the News) post format type */
.plu-news-category-stories[data-post-format-type="link"] .plu-view-more-stories-link {
	margin-top: 3em;
	background: transparent;
}

.plu-news-category-stories[data-post-format-type="link"] .all-category-stories {
	display: flex;
	flex-direction: column;
}

.plu-news-category-stories[data-post-format-type="link"] .plu-news-category-title {
	margin-bottom: 1.5em;
}

.plu-news-category-stories[data-post-format-type="link"] .all-category-stories .category-story-wrapper {
	width: 100%;
	margin-bottom: 1em;
	background: #ffffff;
	text-align: center;
	padding: 1em;
}
.plu-news-category-stories[data-post-format-type="link"] .all-category-stories .category-story-wrapper:last-child {
	margin-bottom: 0;
}

.plu-news-category-stories[data-post-format-type="link"] .all-category-stories .category-story-wrapper .story-details .story-mention-date {
	margin: 0;
	padding: 0;
	color: #656565;
	font-size: 10px;
	text-transform: uppercase;
	font-family: "Aleo", serif;
	letter-spacing: 0.4px;
	font-weight: bold;
}
    
.plu-news-category-stories[data-post-format-type="link"] .all-category-stories .category-story-wrapper .story-details > h4 {
	margin-top: 0;
	margin-bottom: 7px;
}

/* DISPLAY TYPE = Slider */
.plu-news-category-stories[data-display-type="slider"] {
}

.plu-news-category-stories[data-display-type="slider"] .plu-view-more-stories-link {
	display: none;
}

.plu-news-category-stories[data-display-type="slider"] .plu-news-category-title {
	margin-bottom: 2em;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper,
.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper.video {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-bottom: 2em;
}
    
.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-image {
	width: 100%;
	height: 215px;
	margin-bottom: 0;
	background-size: cover;
	background-position: center;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details {
	width: 100%;
	background: #f2f2f2;
	padding: 1.5em;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details .story-title {
	font-size: 20px;
	color: #222222;
	font-weight: bold;
	margin-top: 0;
	padding-top: 0;
}
.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details .story-title:hover {
	color: #000000;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details .story-content {
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details .story-content .story-meta {
	margin: 0 0 10px 0;
	color: #4a4a4a;
	font-family: "Aleo", serif;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-details .story-content .story-link {
	background: #fbba37;
	color: #151515;
	padding: 11px 12px 10px 12px;
	display: inline-block;
	border-radius: 4px;
	font-size: 12px;
	font-family: "Aleo", serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* video post format type */
.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-video {
	width: 100%;
	margin-bottom: 0;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-video .story-video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-video .story-video-wrapper iframe,
.plu-news-category-stories[data-display-type="slider"] .all-category-stories .category-story-wrapper .story-video .story-video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*** ---------- All / Latest Stories ----------- ***/

.plu-news-all-stories-wrapper {
	padding: 3em 0 1em 0;
}

.plu-news-all-stories {
}

.plu-news-all-stories .all-stories {
	
}

.plu-news-all-stories .all-stories .all-story-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #e8e8e8;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-media {
	width: 100%;
	margin-bottom: 1em;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-media .plu-audio-player {
	width: 100%;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-media .story-image {
	width: 100%;
	height: 150px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-content {
	width: 100%;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-content > h4 {
	margin: 0 0 6px 0;
	padding: 0;
	line-height: 1;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-content .story-title {
	color: #111111;
	font-size: 17px;
}

.plu-news-all-stories .all-stories .all-story-wrapper .news-post-content .story-content .story-meta {
	font-size: 14px;
	margin: 0;
	color: #595959;
	font-family: "Aleo", serif;
	font-weight: bold;
	letter-spacing: 0.5px;
}

/*** ---------- Post Type Archives ----------- ***/

/* page navigation */
.page-navigation .page-numbers {
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.page-navigation .page-numbers li {
	margin-right: 10px;
}

.page-navigation .page-numbers li .page-numbers {
	color: #999999;
	border-radius: 3px;
	font-size: 14px;
	display: block;
	width: 24px;
	height: 23px;
	text-align: center;
}

.page-navigation .page-numbers li .page-numbers.current {
	color: #fff;
	background: #000;
	font-weight: bold;
}

.page-navigation .page-numbers li:hover a.page-numbers {
	background: #e6e6e6;
}

/*** ---------- PLU in the News ----------- ***/

.plu-in-the-news-wrapper {
	background: #e8e8e8;
	padding: 4em 0 3em 0;
}

/**** Single News - adjust styling from theme to make header image (on 'standard' posts) be full width ***/

body.news.single .body-wrapper.news #content #inner-content[root-home="no"] {
	margin: 0 auto;
	max-width: unset;
	padding: 0;
}

.single-news-post .entry-content .post-featured-media[media-type="image"] {
	position: relative;
	/*max-width: 1700px;*/
	margin: 0 auto;
}

/* image headers */
.single-news-post .entry-content .post-featured-media[media-type="image"] img {
	border-radius: 0;
}
/* audio headers */
.single-news-post .entry-content .post-featured-media[media-type="audio"] {
	max-width: 1430px;
	margin: 2em auto 0 auto;
	display: block;
	padding: 0 15px;
}

/* make the image caption, posts content & footer have a set width */
.single-news-post .entry-content .post-featured-media[media-type="image"] .post-featured-image-caption,
.single-news-post .entry-content .post-title-details-container,
.single-news-post .entry-content .post-content,
.single-news-post .post-footer {
	max-width: 1430px;
	margin:  0 auto;
	padding: 0 15px;
}

.single-news-post .entry-content .post-featured-media[media-type="image"] .post-featured-image-caption {
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fff;
	background: #222;
}

.single-news-post .entry-content .post-title-details-container {
	border-bottom: 0;
	margin: 0 auto;
}

.single-news-post .entry-content .post-title-details-container .post-details {
	border-bottom: 3px solid #e8e8e8;
	margin: 1em 0;
	padding-bottom: 1em;
}

.single-news-post .post-content .news-author,
.single-news-post .post-content .news-lead {
	margin-bottom: 15px;
}

/*** ---------- Floating progress bar indicator on single news posts ---------- ***/
.plu-news-posts-reading-progress {
	position: fixed;
	top: -10px;
	left: 0;
	width: 100%;
	min-height: 5px;
	z-index: 10;
	transition: top 0.3s ease-in-out;
	box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.plu-news-posts-reading-progress.display {
	top: 0px;
}

.plu-news-posts-reading-progress .progress-indicator-preview {
	height: 5px;
	background-color: #e8e8e8;
	width: 100%;
	position: absolute;
	bottom: 0;
}

.plu-news-posts-reading-progress .progress-indicator {
	height: 5px;
	background-color: #fbba37;
	width: 0px;
	position: absolute;
	bottom: 0;
	transition: width 0.3s ease-in;
}

/*** ---------- Archive view type switcher - we switch from 'list ' to 'grid' ----------- ***/
.plu-news-archive-view-switch {
	display: none;
}

.post-content-type-news[view-type="grid"] .news-post-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2.2em;
	padding-bottom: 2em;
	border-bottom: 5px solid #e8e8e8;
}


/* STANDARD post type */
.post-content-type-news[view-type="grid"] .news-post-container .news-post-media {
	width: 100%;
	margin-bottom: 1em;
	margin-right: 0;
	overflow: hidden;
	position: relative;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media a {
	display: block;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media .img-overlay {
	background: rgba(251, 186, 55, 0);
	transition: all 0.2s ease-in;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media img {
	transition: all 0.2s ease-in;
	position: relative;
	z-index: 0;
	width: 100%;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media:hover .img-overlay {
	background: rgba(251, 186, 55, 0.5);
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media:hover img {
	transform: scale(1.2) rotate(5deg);
}


/* VIDEO post type */
.post-content-type-news[view-type="grid"] .news-post-container .news-post-media[data-type="video"] .video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-media[data-type="video"] .video-wrapper iframe,
.post-content-type-news[view-type="grid"] .news-post-container .news-post-media[data-type="video"] .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content {
	width: 100%;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-title {
	margin: 0 0 2px 0;
	padding: 0;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-excerpt {
	margin: 0 0 8px 0;
	padding: 0;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-title a {
	color: #000000;
	text-decoration: none;
	background-image: linear-gradient(to right, #ecbc5b, #fbba37);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	transition: all 0.25s ease-in-out;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-title a:hover {
	background-size: 100% 2px;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-topic {
	margin-top: 10px;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-topic a {
	color: #ccc;
	font-family: "Aleo", serif;
	text-transform: uppercase;
	font-size: 10px;
	border: 1px solid #ccc;
	padding: 3px 7px;
	border-radius: 10px;
	margin: 0 3px 0 0;
	display: none;
	transition: all 0.3s ease-in-out;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-topic a:hover {
	color: #000000;
	border-color: #000000;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-topic a:nth-child(-n+3) {
	display: inline-block;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-meta {
	font-size: 13px;
	margin: 5px 0 0 0;
}

.post-content-type-news[view-type="grid"] .news-post-container .news-post-content .news-post-meta .post-mention {
	padding-bottom: 5px;
}


/* AUDIO post type */
.post-content-type-news[view-type="grid"] .news-post-container .news-post-media[data-type="self-hosted-audio"] .plu-audio-player {
	width: 100%;
}

/*** ------------- 'RESOLUTE' STYLING -------------- ***/

/* add a small 'resolute' logo on top of post titles to highlight it is a resolute story */
.all-story-wrapper.resolute .news-post-content > h4:before,
.all-category-stories .category-story-wrapper.resolute .story-details > h4:before,
.news-post-container.topics-resolute .news-post-content .news-post-title:before,
.plu-news-featured-stories .featured-story-wrapper.resolute h4.story-title:before,
body.single-news article.topics-resolute .entry-content .post-content:before,
.latest-posts-container .latest-post.resolute .post-title:before {
	content: "";
	background: url('../images/plu-resolute-news-logo.png') center no-repeat;
	display: block;
	width: 100px;
	height: 21px;
	background-size: contain;
	margin-bottom: 8px;
	border-radius: 3px;
}
/* adjust margin-bottom for certain cases */
.all-story-wrapper.resolute .news-post-content > h4:before {
	margin-bottom: 5px;
}
.plu-news-category-stories[data-display-type="default"] .all-category-stories .category-story-wrapper.resolute .story-details > h4:before {
	margin-bottom: 4px;
}
.latest-posts-container .latest-post.resolute .post-title:before {
	margin-top: 7px;
	margin-bottom: 4px;
}

/* footer area on main homepage of resolute issues */
.plu-news-resolute-home-footer {
	background: #e8e8e8;
	padding: 2em;
	margin: 1em 0 -2em 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.plu-news-resolute-home-footer .resolute-archives-slider {
	max-width: 170px;
	margin: 0 auto;
}

.plu-news-resolute-home-footer .resolute-archives-slider .media-slider-image .text-wrapper.default {
	padding: 6px 10px !important;
	text-align: center;
}

.plu-news-resolute-home-footer .resolute-archives-slider .media-slider-image .text-wrapper.default .media-slide-title {
	font-size: 13px !important;
}

.plu-news-resolute-home-footer .resolute-archives-slider .flickity-page-dots {
	display: none !important;
}

/* story image outline on landing page */
.plu-resolute-story-outline img {
	border: 1px solid #e8e8e8;
	padding: 7px;
}

/* styling for individual posts in resolute features */
.resolute-quote-on-image {
	padding-top: 25em;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.resolute-quote-on-image .text-box {
	background: rgba(0,0,0,0.4);
	padding: 0 20px;
	border-radius: 3px 0;
}

.resolute-quote-on-image .text-box h5, 
.resolute-quote-on-image .text-box p {
	color: #fff;
}

.resolute-quote-on-image .text-box p {
	margin-bottom: 15px;
}

/*** ---------- Single News Styling (we override the "PLU News Posts" plugin with the styles below ----------- ***/
.single-news-post .entry-content .post-title-details-container {
	text-align: center;
	max-width: unset;
	background-position: bottom left;
	background-blend-mode: overlay;
	background-image: url('../images/diagonal-striped-pattern.png'), linear-gradient(125deg, #f89b1c 0%, #fbba37 100%);
	background-repeat: repeat;
	background-size: auto;
	padding: 1.5em 15px;
}

.single-news-post .entry-content .post-title-details-container .post-title {
	max-width: 900px;
	margin: 0 auto;
}

.single-news-post .entry-content .post-title-details-container .post-title .page-title {
	font-size: 1.4em;
	text-shadow: none;
	color: #151515;
	margin: 0;
}

.single-news-post .entry-content .post-title-details-container .post-details {
	border-bottom: none;
	margin: 0 auto;
	padding-bottom: 0;
	max-width: 900px;
	display: none; /* hide the 'posted by' section */
}

.single-news-post .entry-content .post-title-details-container .post-details .post-date {
	display: none;
}

.single-news-post .entry-content .post-content {
	padding-top: 1em;
	padding-bottom: 2em;
}

.single-news-post .entry-content .post-content .post-details {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	color: #333;
	margin-top: 14px;
	margin-bottom: 12px;
	letter-spacing: 0.3px;
	background: #ddd;
	padding: 3px 7px 2px 7px;
	border-radius: 3px;
}

.single-news-post .post-footer {
	background: #f3f3f3;
	max-width: unset;
	padding-top: 5px;
	padding-bottom: 3em;
}

.single-news-post .post-footer .footer-section {
	max-width: 1430px;
	margin: 2em auto 0 auto;
}

.single-news-post .post-footer .post-prev-next-social-container {
	background: #fff;
}