.podcast-list {
	margin-top: 50px;
}

.podcast-list > *:not(:last-child) {
	margin-bottom: 30px;
}

.podcast-list > a {
	display: block;
}

.podcast-list > a:hover {
	text-decoration: none;
}

.podcast {
	display: flex;
	background: #F6F7F8;
	align-items: flex-start;
}

.podcast .audio-player {
	max-width: 250px;
	width: 100%;
	position: relative;
	flex-shrink: 0;
}

.podcast .audio-player::after {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.podcast .audio-player > :first-child {
	position: absolute;
	width: 100%;
	height: 100%;
}

.podcast .audio-player img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.podcast .audio-player audio {
	display: none;
}

.podcast .audio-player__controls {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	padding: 7px 5px
}

.podcast .audio-player__controls {
    width: 100%;
    display: flex;
	align-items: center;
	color: #ffffff;
}

.podcast .audio-player__controls .audio-player__button {
	background: none;
	border: 0;
	padding: 0;
	margin-right: 10px;
}

.podcast .audio-player__controls .audio-player__button:focus {
	outline: none
}

.podcast .audio-player__controls .audio-player__icon {
	fill: #ffffff;
	display: block;
}

.podcast .audio-player__controls .audio-player__icon--pause {
	display: none;
}

.podcast .audio-player__progress {
    max-width: 300px;
	height: 10px;
	border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
    flex-grow: 1;
	display: flex;
	margin-right: 10px;
	overflow: hidden;
	cursor: pointer;
}

.podcast .audio-player__current-progress {
    background: #ffffff;
}

.podcast .audio-player__timestamp {
	min-width: 65px;
	text-align: right;
}

.podcast .description {
	padding: 15px 30px;
}

.podcast .description > * {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-all;
	word-break: break-word;
	hyphens: auto;
}

.podcast .subscribe {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
}

.podcast .podcast-links {
	list-style: none;
	display: flex;
	line-height: 1;
	align-items: center;
	padding-left: 1rem;
}

.podcast .podcast-links li:not(:last-child) {
	margin-right: 1.5rem;
}

.podcast .podcast-links a {
	color: #69696c;
}

.podcast .podcast-links a:hover {
	color: #252525;
}

.podcast .podcast-links a svg {
	fill: currentColor;
}

@media (max-width: 767px) {
	.podcast-page {
		max-width: 340px;
		margin: 0 auto 20px auto;
	}
	.podcast {
		flex-direction: column;
	}

	.podcast .audio-player {
		max-width: none;
	}
}