/* Shared styles for podcast pages */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #f5f5f5;
	padding: 2rem 1rem;
	margin: 0;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 3rem 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header {
	text-align: center;
	margin-bottom: 2rem;
}

header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
	line-height: 1.2;
}

.cover {
	display: block;
	margin: 0 auto 2rem;
	border-radius: 8px;
	max-width: 100%;
	height: auto;
}

.content {
	max-width: 600px;
	margin: 0 auto;
}

.content p {
	line-height: 1.6;
	color: #555;
	margin-bottom: 1rem;
}

.content a {
	color: #0066cc;
	text-decoration: none;
}

.content a:hover {
	text-decoration: underline;
}

.listen-to-podcast {
	text-align: center;
	margin: 2rem 0;
}

.listen-to-podcast .pure-button {
	background-color: #0066cc;
	color: white;
	border-radius: 4px;
	padding: 0.75rem 1.5rem;
	margin: 0.5rem;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.2s;
}

.listen-to-podcast .pure-button:hover {
	background-color: #0052a3;
}

.back-link {
	display: block;
	text-align: center;
	margin-top: 2rem;
	color: #666;
	text-decoration: none;
	font-size: 0.9rem;
}

.back-link:hover {
	color: #333;
	text-decoration: underline;
}

footer {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
	color: #666;
	font-size: 0.9rem;
}

/* Overview page styles */
.overview-container {
	max-width: 1200px;
	margin: 0 auto;
}

.overview-container header {
	text-align: center;
	margin-bottom: 3rem;
}

.overview-container header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: #333;
}

.overview-container header p {
	color: #666;
	font-size: 1.1rem;
}

.podcasts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.podcast-card {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
	display: block;
	color: inherit;
}

.podcast-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.podcast-card img {
	width: 100%;
	max-width: 250px;
	height: auto;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.podcast-card h2 {
	font-size: 1.5rem;
	margin: 0.5rem 0;
	color: #333;
}

.overview-container footer {
	text-align: center;
	margin-top: 4rem;
	color: #666;
	font-size: 0.9rem;
	border-top: none;
	padding-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.container {
		padding: 2rem 1rem;
	}

	header h1 {
		font-size: 2rem;
	}

	.listen-to-podcast .pure-button {
		display: block;
		margin: 0.5rem auto;
		max-width: 250px;
	}
}
