main {
	max-width: 1140px;
	margin: auto;
	padding-top: 40px;
}

/*

	Individual Podcast Pages 

*/

/* podcast-player */

:root {
  --vol-slider-shadow: 0px;
  --time-slider-shadow: 0px;
}

.podcast-bkgrd-wrapper {
	position: relative;
}

.podcast-img-bkgrd {
	height: 420px;
	filter: saturate(3);
	overflow: hidden;
	position: relative;
}

.podcast-gradient {
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 100%);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

#podcast-list article .img-wrapper>img,
.newest-podcast .podcast-image>img,
.podcast-img-bkgrd img {
	filter: grayscale(1) brightness(0.8);
	opacity: 0.8;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.podcast-overlay{
	height: 100%;
	width: 100%;
	opacity: 0.5;
	position: absolute;
	top: 0;
}

.podcast-back {
	text-transform: uppercase;
	text-decoration: none;
	font-family: 'Futura W01 Bold';
	font-size: 12px;
	color: #fff;
	display: inline-flex;
	background-color: #fcb03a;
	padding: 5px 15px;
	position: absolute;
	left: -10px;
	top: 30px;
	z-index: 10;
}

.podcast-back::before {
	content: "«";
	padding: 0 5px 0 0;
}

.podcast-back:hover {
	background-color: #494444;
}

.podcast-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.podcast-player {
	margin: -100px 40px 30px;
	z-index: 1;
	background-color: #fff;
	padding: 40px 25px 0;
	max-width: 100%;
}

.podcast-excerpt {
	padding: 0 15px;
}

.podcast-excerpt h2 {
	font-size: 38px;
	color: #585257;
	font-family: 'Futura W01 Bold';
}

.podcast-excerpt p {
	font-size: 18px;
	color: #585257;
}

.player-controls {
	display: flex;
	margin: 60px 0;
	width: 100%;
	justify-content: space-between;
	padding: 20px 10px;
	box-shadow: 0px 5px 10px -5px #ddd;
	border-radius: 50px;
}

.player-controls .podcast-logo {
	padding-left: 30px;
	display: flex;
	align-items: center;
}

.player-controls .podcast-logo img {
	max-width: 111px;
	height: auto;
}

.player-transport {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	padding: 0 10px;
}

.player-transport > * {
	flex-shrink: 0;
}

.player-time {
	position: absolute;
	top: -2px;
	display: flex; 
	align-items: center; 
	justify-content: space-between;
	width: 100%;
	font-size: 12px;
	font-family: 'Futura W01 Bold';
	color: #949090;
}

.player-time-wrapper,
.player-vol-wrapper {
	position: relative;
	display: flex; 
	align-items: center; 
	justify-content: center;
}

.player-time-wrapper {
	min-width: 400px;
}

.player-vol-wrapper {
	padding-right: 30px;	
}

/* Player Scrub */
#play-btn,
#play-btn.paused {
	background-image: url('../images/podcast/play-pause-sprite.png');
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: left;
	background-color: #fcb03a;
	margin: 0 10px;
	border: none;
	border-radius: 50%;
	height: 50px !important;
	width: 50px !important;
}

#play-btn.playing {
	background-position-x: right;
	background-color: #494444;
}

#rewind {
	background-image: url('../images/podcast/rewind.png');
	background-repeat: no-repeat;
	background-position: 45% 25%;
	background-color: #e6e7e8;
	border: none;
	border-radius: 50%;
	height: 25px;
	width: 25px;
}

#forward {
	background-image: url('../images/podcast/forward.png');
	background-repeat: no-repeat;
	background-position: 45% 25%;
	background-color: #e6e7e8;
	border: none;
	border-radius: 50%;
	height: 25px;
	width: 25px;
}

#play-btn:focus,
#rewind:focus,
#forward:focus {
	outline: none;
	border: none;
}

#play-btn:hover,
#rewind:hover,
#forward:hover {
	opacity: 0.7;
}

/* Player Volume */

#mute-control {
	background-image: url('../images/podcast/volume-sprite.png');
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: 0px;
	background-color: transparent;
	margin: 0 10px;
	border: none;
	height: 20px;
	width: 20px;
}

#mute-control:focus {
	outline: none;
	border: none;
}

#mute-control.full {background-position-x: 0px;}
#mute-control.mid {background-position-x: -20px;}
#mute-control.low {background-position-x: -40px;}
#mute-control.mute {background-position-x: -60px;) !important;}

#mute-control:hover {
	opacity: 0.7;
}


/* Player Range Sliders  http://danielstern.ca/range.css/#/ */

#time-slider { width: 500px; }
#vol-slider { width: 100px; }

input[type=range].podcast {
  -webkit-appearance: none;
  width: 100%;
  margin: 2.5px 0;
}

input[type=range].podcast:focus {
  outline: none;
}

input[type=range].podcast::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #fdc061;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}

#vol-slider::-webkit-slider-runnable-track {
	box-shadow: var(--vol-slider-shadow) 0px 0px #a9a6a6 inset;
} 

#time-slider::-webkit-slider-runnable-track {
	box-shadow: var(--time-slider-shadow) 0px 0px #a9a6a6 inset;
} 

input[type=range].podcast::-webkit-slider-thumb {
  border: 0px solid rgba(0, 0, 0, 0);
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #494444;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -2.5px;
}

input[type=range].podcast:focus::-webkit-slider-runnable-track {
  background: #fdc061;
}

input[type="range"]::-webkit-progress-value {
  background-color: #a9a6a6;
  border: 1px solid #a9a6a6;
}

input[type=range].podcast::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background: #fdc061;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}

input[type="range"]::-moz-range-progress {
  background-color: #a9a6a6;
  border: 1px solid #a9a6a6;
}

input[type=range].podcast::-moz-range-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #494444;
  cursor: pointer;
}

input[type=range].podcast::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].podcast::-ms-fill-lower {
  background: #a9a6a6;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}

input[type=range].podcast::-ms-fill-upper {
  background: #fdc061;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}

input[type=range].podcast::-ms-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #494444;
  cursor: pointer;
  height: 5px;
}

input[type=range].podcast:focus::-ms-fill-lower {
  background: #fdc061;
}

input[type=range].podcast:focus::-ms-fill-upper {
  background: #fdc061;
}

@media screen and (max-width: 1000px) {
	.podcast-logo {
		display: none;
	}
	
	.podcast-back {
		left: 0;
	}
	
	main {
		padding-top: 0px;
	}
	
	.podcast-excerpt>* {
		max-width: 90vw;
	}
	
	.podcast-excerpt h2 {
		font-size: 30px;
	}
	
	.podcast-excerpt p {
		font-size: 16px;
	}
	
	.player-vol-wrapper {
		display: none;
	}

	.player-time-wrapper {
		max-width: 100%;
		padding: 30px 0 50px;
		min-width: 85%;
	}
	
	#time-slider {
		width: 100%;
	}
	
	.podcast-player {
		display: flex; 
		align-items: center; 
		justify-content: center; 
		flex-direction: column;
		margin: 0;
		z-index: 1;
		background-color: #fff;
		padding: 40px 0px;
		max-width: 100%;
	}
	
	.player-controls {
		flex-direction: column-reverse;
		margin: 50px 0 15px;
		width: 100%;
		justify-content: center;
		align-items: center;
		padding: 0 15px;
		box-shadow: none;
	}
	
	#play-btn {
		margin: 10px 30px;
	}
}

@media screen and (max-width: 600px) {
	.podcast-img-bkgrd {
		height: 250px;
	}
}


/* Podcast Platforms */
.podcast-platforms {
	background-color: #f2f2f2;
	padding: 90px 15px;
}

.podcast-platforms .platform-wrapper {
	max-width: 1240px;
	margin: auto;
}

.platform-wrapper > p {
	font-size: 20px;
	color: #494444;
	text-align: center;
	margin-bottom: 40px;
}

.platform-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.platform-links > div {
	flex-basis: 25%;
}

.platform-links a {
	text-decoration: none;
	font-family: 'Futura W01 Bold';
	color: #494444;
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.platform-links a>img {
	max-width: 60px;
	height: auto;
	margin-right: 20px;
}

.platform-links a > i {
	margin-left: 10px;
	position: relative;
	transition: left .3s ease-in-out;
}

.platform-links a:hover {
	opacity: 0.7;
}

.platform-links a img:hover {
	opacity: 1;
}

.platform-links a:hover > i {
	left: 3px;
}


@media screen and (max-width: 1000px) {
	.podcast-platforms {
		padding: 60px 15px;
	}
	
	.platform-links a {
		flex-direction: column;
		font-size: 18px;
	}

	.platform-links a > i {
		display: none;
	}
	
	.platform-links a>img {
		max-width: 60px;
		margin-right: 0px;
		margin-bottom: 5px;
	}

}


@media screen and (max-width: 600px) {
	
	.podcast-platforms {
		padding: 45px 15px;
	}

	.platform-links > div {
		flex-basis: 50%;
		margin: 15px 0;
	}
	
	.platform-links a {
		font-size: 18px;
	}
	
	.platform-links a>img {
		max-width: 40px;
		margin-bottom: 5px;
	}
	
	
	.platform-wrapper > p {
		font-size: 16px;
		line-height: 24px;
	}
}


/* Podcast Article */

.single-podcast-article {
	display: -ms-grid;
	display: grid;
	max-width: 1100px;
	padding: 60px 20px 100px;
	-ms-grid-columns: 1fr 380px;
	grid-template-columns: 1fr 380px;
}

.single-podcast-article>article {
	-ms-grid-column: 1;
	padding-right: 50px;
}

.single-podcast-article>aside {
	-ms-grid-column: 2;
}

p.episode-label {
	text-transform: uppercase;
	font-family: 'Futura W01 Bold';
	font-size: 12px !important;
	color: #e68f1a;
	margin-bottom: 5px;
}

.single-podcast-article h1 {
	font-size: 48px;
	font-family: 'Futura W01 Bold';
	color: #494444;
	line-height: 54px;
	margin: 10px 0 60px;
}

.single-podcast-article p {
	font-size: 18px;
	line-height: 30px;
}


/* Podcast Sidebar */
.single-podcast-article aside {
	padding-left: 50px;
	flex-shrink: 0;
	flex-grow: 0;
}

.single-podcast-article aside>p {
	font-family: 'Futura W01 Bold';
	font-size: 30px;
	line-height: 40px;
	color: #494444;
}

.recent-podcasts article {
	padding: 0px 0 50px;
}

.recent-podcasts a {
	text-decoration: none;
	color: #494444;
}

.recent-podcasts h3 {
	font-family: 'Futura W01 Bold';
	color: #494444;
	font-size: 20px;
	line-height: 28px;
}

.recent-podcasts a:hover h3 {
	color: #e68f1a;
}

.recent-podcasts p {
	font-size: 15px;
	padding-top: 15px;
	line-height: 24px;
}

@media screen and (max-width: 1000px) { 
	
	.single-podcast-article {
		display: block;
		padding: 60px 20px 60px;
	}
	
	.single-podcast-article article {
		padding-right: 0px;
		margin-bottom: 60px;
	}
	
	.single-podcast-article h1 {
		font-size: 30px;
		line-height: 38px;
	}
	
	.single-podcast-article img {
		max-width: 100%;
		height: auto;
	}
	
	.single-podcast-article p {
		font-size: 16px;
	}

	.single-podcast-article aside {
		padding-left: 0px;
	}
}


/*

	Podcast Landing Page 

*/


.podcast-landing .readmore {
	font-family: 'Futura W01 Bold';
	color: #494444;
	font-size: 12px;	
	line-height: 12px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.podcast-landing .readmore::before {
	content: "+";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	color: #fff;
	background-color: #fcb03a;
	margin: 0 5px 0 0;
	padding: 1px 2px 3px 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.podcast-landing .excerpt .readmore::before { 
	margin-left: 0px;
}

.podcast-landing .readmore:hover {
	opacity: 0.7;
}

main.podcast-upper {
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	max-width: none;
	padding-top: 20px
}

.podcast-main {
	background: #f2f2f2;
	margin-bottom: 60px;
	padding: 0 15px;
}

.podcast-main>div {
	display: flex;
	max-width: 1140px;
	margin: auto;
	padding: 60px 0;
}

.podcast-main figure {
	padding-right: 80px;
	padding-top: 10px;
}

.podcast-landing .podcast-gradient {
	padding: 0;
}

.podcast-landing .podcast-gradient span {
	font-family: 'Futura W01 Bold';
	color: #fff;
	font-size: 12px;
	padding: 20px 0 0 30px;
	display: inline-block;
}

.podcast-landing .podcast-image .podcast-gradient img {
	position: absolute;
	bottom: 30px;
	right: 30px;
}

.podcast-landing .podcast-gradient img {
	position: absolute;
	bottom: 10px;
	right: 0px;
}

#podcast-list .podcast-gradient img {
	width: 100%;
	height: auto;
}

a.podcast-title {
	text-decoration: none;
}

#podcast-list h3,
.podcast-main h1 {
	font-family: 'Futura W01 Bold';
	color: #494444;
	font-size: 20px;
	line-height: 28px;
}

#podcast-list h3:hover {
	color: #e68f1a;
}

#podcast-list .excerpt {
	color: #494444;
	font-size: 16px;
	line-height: 24px;	
	padding-top: 15px;
}


.podcast-main p {
	font-size: 16px;
	line-height: 24px;
}

.podcast-main .platform-links-small {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.podcast-main .platform-links-small>* {
	margin-right: 20px;
}

.podcast-main .platform-links-small strong {
	font-size: 14px;
	font-family: 'Futura W01 Bold';
	color: #494444;
	margin-bottom: 3px;
}

.podcast-main .platform-links-small img {
	max-width: 25px;
	height: auto;
}

.newest-podcast {
	margin-bottom: 60px;
	background-image: url('../images/podcast/soundwave-bkgrd.png');
	background-position: center top;
	background-repeat: no-repeat;
}

.newest-podcast article {
	margin: auto;
	max-width: 1140px;
	padding-top: 30px;
}

.newest-podcast .podcast-image {
	-ms-grid-column:3;
	-ms-grid-column-span:1;
	-ms-grid-row:1;
	-ms-grid-row-span:2;
	
	grid-column: 3/4;
	grid-row: 1/3;
	margin-right: -40px;
	width: 420px;
	height: 440px;
	position: relative;
	overflow: hidden;
	filter: saturate(3);
	cursor: pointer;
	border-radius: 5px;
}

.newest-podcast .podcast-content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
}

.newest-podcast .podcast-content .text-wrapper {
	-ms-grid-column:1;
	-ms-grid-column-span:2;
	-ms-grid-row:1;
	-ms-grid-row-span:1;
	
	grid-column: 1/3;
	grid-row: 1/2;
	padding-right: 40px;
	padding-top: 60px;
}

.newest-podcast .podcast-content .text-wrapper .excerpt {
	font-size: 18px;
	margin-bottom: 5px;
	line-height: 30px;
}

.newest-podcast a {
	text-decoration: none;
}

.newest-podcast h2 {
	font-size: 38px;
	line-height: 48px;
	font-family: 'Futura W01 Bold';
	color: #494444;
}

.newest-podcast h2:hover {
	color: #e68f1a;
}

.newest-podcast .podcast-player {
	-ms-grid-column:1;
	-ms-grid-column-span:2;
	-ms-grid-row:2;
	-ms-grid-row-span:1;
	grid-column: 1/3;
	grid-row: 2/3;
	
	margin: 0;
	padding: 0;
	margin-left: -20px;
}

.podcast-player.podcast-landing .player-controls {
	margin: 0px 0 20px -30px;
}

.podcast-player.podcast-landing #time-slider {
	width: 400px;
}

#podcast-list article {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 60px;
}

#podcast-list article .img-wrapper {
	-ms-grid-column:1;
	position: relative;
	height: 260px;
	overflow: hidden;
	margin-right: 45px;
	filter: saturate(3);
	cursor: pointer;
	border-radius: 5px;
}

#podcast-list article .episode-preview {
	-ms-grid-column:2;	
}

#podcast-list {
	padding: 30px;
}

@media screen and (max-width: 1200px) {
	
	.newest-podcast .text-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.newest-podcast .podcast-content {
		padding-right: 30px;
		padding-left: 30px;
	}
	
	.newest-podcast h2 {
		font-size: 30px;
		line-height: 38px;
	}
	
	.newest-podcast .podcast-image {
		grid-row: 1/2;
		margin-right: 0;
	}
	
	.newest-podcast .podcast-player {
		grid-column: 1/4;
		margin-top: 60px;
		margin-left: 0;
	}
	
	.podcast-player.podcast-landing .player-controls {
		margin: 20px 0 20px -15px;
	}
	
	.podcast-player.podcast-landing #time-slider {
		width: 100%;
	}
	
}

@media screen and (max-width: 900px) {
	.newest-podcast .podcast-content {
		grid-template-columns: 1fr 1fr;
	}
	
	.newest-podcast .podcast-content .podcast-image {
		grid-row: 1/2;
		grid-column: 1/3;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.newest-podcast .podcast-content .text-wrapper {
		grid-row: 2/3;
		grid-column: 1/3;	
		padding-top: 0;
	}
	
	.newest-podcast .podcast-content .podcast-player {
		grid-row: 3/4;
		grid-column: 1/3;
		margin-left: 0;
	}
	
	.podcast-main>div {
		flex-direction: column;
	}
	
	.podcast-main figure {
		margin-bottom: 20px;
	}
	
	#podcast-list article {
		grid-template-columns: 1fr;
		margin-bottom: 90px;
	}
	
	#podcast-list article .img-wrapper {
		margin-right: 0;
	}
	
}

 /* IE10+ CSS styles go here */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
		.podcast-gradient {
			z-index: 1;
		}
	
    .ie-overlay {
	    position: absolute;
	    height: 100%;
	    width: 100%;
	    opacity: 0.5;
	    z-index: 0;
	    top: 0;
    }
}

































