/* Table of Contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Podcast
*/


/* Breakpoints
––––––––––––––––––––––––––––––––––––––––––––––––––
0-374		2 columns
375-639		6 columns
640-1023	12 columns
1024-1439	12 columns
1440+		12 columns

*/

@media (min-width: 375px) {}
@media (min-width: 640px) {}
@media (min-width: 800px) {}
@media (min-width: 1024px) {}
@media (min-width: 1440px) {}

@media (max-width: 374px) {}
@media (max-width: 639px) {}
@media (max-width: 799px) {}
@media (max-width: 1023px) {}
@media (max-width: 1439px) {}

/* Wordpress Admin Bar Height-Change Breakpoints
––––––––––––––––––––––––––––––––––––––––––––––––––
0-782		46px tall
783-...		32px tall

*/

/* Podcast
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.podcast, .podcast-classic {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
}
.podcast__overlay, .podcast__overlay-classic {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #000;
	opacity: .5;
}
.podcast__container {
	background: #E5E5E5;
	width: calc(100% - 20px);
	left: 10px;
	top: 50px;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.podcast__message-wrap {
	text-transform: uppercase;
	font-family: "Gotham A", "Gotham B";
	font-style: normal;
	font-weight: 500;
	text-align: center;
	margin: 10px 0px;
}
.podcast__message {}
.podcast__links {
	display: inline-flex;
}
.podcast__link {
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
	display: block;
	width: calc(50% - 20px);
	padding: 15px;
	margin: 10px;
	border: 1px solid #979797;
	background: #FFF;
	box-sizing: border-box;
}
.podcast__link:hover {
	border: 2px solid #979797;
}
.podcast__link-image-wrap {}

@media (min-width: 500px) {
	.podcast__container {
		width: calc(100% - 100px);
		left: 50px;
	}
	.podcast__link {
		padding: 25px;
	}
}

@media (min-width: 580px) {
	.podcast__container {
		width: calc(100% - 140px);
		left: 70px;
	}
	.podcast__link {
		padding: 25px;
	}
}

@media (min-width: 640px) {
	.podcast__container {
		width: 550px;
		left: calc(50% - 275px);
		top: 250px;
		padding: 60px;
	}
	.podcast__message-wrap {
		margin: 0px 0px 30px;
	}
}
