.podcast {
	display: block;
	margin: 0px auto;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	color: black;
}

a.podcast {
	text-decoration: none;
	margin: 40px 0;
	padding: 40px 0 18px 0;
	border-top: 1px solid var(--color-black);
}

a.podcast:hover .white{
	color: var(--color-black);
}

a.podcast h4{
	color: var(--color-dark-grey);
}

a.podcast:hover h4{
	color: white;
}

.podcast .title-container {
	padding: 40px;
}

.podcast h3 {
	padding: 0 !important;
	margin: 0 !important;
}

.button-round.listen {
	position: absolute;
	top: 60px;
	right: 0;
}

@media all and (max-width: 768px){
	a.podcast {
		margin: 20px 0;
		padding: 20px 0 18px 0;
	}

	.podcast .title-container {
		padding: 20px;
	}
	
	.button-round.listen {
		position: relative;
		top: 0;
		right: none;
		margin-top: 20px;
	}
}

