#podcasts {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}
a.podcast {
	display: block;
	width: 100%;
	max-width: 330px;
	min-height: 650px;
	color: black;
	text-decoration: none;
	margin: 20px;
}
a.podcast > img {
	display: block;
}
.podcast-caption {
	padding: 20px 0px;
}
.podcast-title {
	font-weight: bold;
	font-size: 20px;
	padding: 20px 0px;
}
.podcast-excerpt {
	font-weight: normal;
}
.podcast-caption > button {
	display: block;
	color: #d61516;
	border: 2px solid #d61516;
	background-color: white;
}
.podcast-caption > button:hover {
	display: block;
	color: white;
	background-color: #d61516;
}