ul#podcasts {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 2 2 65%;
}
li.podcast {
	display: flex;
	flex-direction: column;
	margin: 3px 0 30px;
	align-items: center;
	padding: 3px 0 15px;
	cursor: pointer;
}
@media only screen and (min-width: 767px) {
	li.podcast {
		flex-direction: row;
		gap: 60px;
		margin-bottom: 0;
	}
}
.podcast-name {
	border-bottom: 1px solid;
	flex: 0 0 50%;
	font-size: 31px;
	line-height: 1.05;
	font-family: var(--e-global-typography-the7_fonts_widget_title-font-family);
	text-align: center;
	width: 80%;
}
@media only screen and (min-width: 767px) {
	.podcast-name {
		text-align: left;
		width: unset;
	}
}
div#podcast-holder {
	display: flex;
	flex-direction: column;
	position: relative;
}
@media only screen and (min-width: 767px) {
	div#podcast-holder {
		flex-direction: row;
		gap: 100px;
	}
}
.podcast-active-image {
	flex: 1 1 35%;
	background-position: right center;
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 40%;
	display: none;
}
@media only screen and (min-width: 767px) {
	.podcast-active-image {
		display: block;
	}
}

.podcast-host {
	position: relative;
	text-align: center;
}
@media only screen and (min-width: 767px) {
	.podcast-host {
		position: absolute;
		top: 0;
	}
}

.podcast-host-internal {
	position: absolute;
	left: 0;
	top: 0;
}

.podcast-details {
	flex: 1 1 50%;
	position: relative;
	display: none;
}
.podcast.selected .podcast-details {
	display: block;
}
img.podcast-image {
	display: none;
}
.podcast.selected img.podcast-image {
	display: block;
	margin: 20px 0;
	width: 80%;
	height: auto;
}
@media only screen and (min-width: 767px) {
	.podcast.selected img.podcast-image {
		display: none;
	}
}

.podcast-host::before {
	display: inline-block;
	position: absolute;
	left: -45px;
}

.podcast-playnow {
	display: block;
}
.podcast-playnow a {
	color: #000;
	text-decoration: underline;
}
.podcast-playnow::before {
	padding: 0 15px 0 0;
	color: #ff584e;
}

/********** modal ***************/

.podcast-modal-dialog {
	max-width: 800px;
	margin: 30px auto;
}
.podcast-modal-body {
	position: relative;
	padding: 56.25% 0 0 0;
}
.close {
	position: absolute;
	right: -30px;
	top: 0;
	z-index: 999;
	font-size: 2rem;
	font-weight: normal;
	color: #fff;
	opacity: 1;
}

/* The Modal (background) */
.podcast-modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(245, 245, 245, 0.92);
}

/* Modal Content/Box */
.podcast-modal-content {
	background-color: #fff;
	box-shadow: 2px 6px 10px 0px rgba(0, 0, 0, 0.2);
	margin: 15% auto;
	padding: 10px;
	width: max(800px, 80%);
	max-width: 90%;
	position: relative;
}

/* The Close Button */
.podcast-modal-content .close {
	position: absolute;
	top: -20px;
	right: -20px;
	font-family: serif;
	font-weight: 100;
	color: #000;
	border: 1px solid #000;
	border-radius: 100%;
	text-align: center;
	vertical-align: bottom;
	line-height: 40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
}

iframe#video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
