.podcast-content-wrapper {
	--mainColor : #333;
	--altColor : #888;
}

.podcast-newest-wrapper {
	background: #f2f2f2;
	padding: 20px;
	border-radius: 4px;
	// outline: thin red dotted;
	max-width: ;
	margin-left: auto;
	margin-right: auto;
	h1,h2 {
		margin: 0;
		margin-bottom: 15px;
		color: var(--mainColor);
		span {
			display: block;
			font-size: 16px;
			font-weight: bold;
			text-transform: uppercase;
			color: var(--altColor);
		}
	}
	.podcast-details {
		h3:first-child {
			color: var(--mainColor);
			font-size: 24px;
		}
		// background: #f2f2f2;
		font-size: 16px;
		border-radius: 4px;
	}
}


.more-episodes-wrapper {
	padding-left: 20px;
	padding-right: 20px;
	// background: #f0f;
	margin-left: auto;
	margin-right: auto;
	// padding: 20px;
	margin-top: 50px;
	h2 {
		display: block;
		font-size: 24px;
		font-weight: bold;
		// text-transform: uppercase;
		color: var(--altColor);
	}
}

.more-episodes-grid {
	&:hover {
		img {
/*			filter: grayscale(80%);*/
		}
	}
	gap: 30px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	> a {
		text-decoration: none;
		color: inherit;
		img {
			border-radius: 4px;
			transition: .2s;
		}
		// outline: thin red dotted;
		h3 {
			color: var(--mainColor);
			margin: 0;
			font-size: 20px;
			transition: .2s;
		}
		&:hover {
			h3 {
				color: var(--altColor);
			}
			img {
/*				filter: grayscale(0%);*/
			}
		}
	}
}


.prev-next-ep {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	max-width: $wide-width;
	a {
		text-decoration: none;
	}
}

.single-podcast_episode h1{

}