/* Custom styles for SimplePod theme - minimal overrides to Pico CSS */

/* Logo in navigation */
.podcast-logo {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	vertical-align: middle;
	margin-right: 0.5rem;
}

/* Call to action section */
.call-to-action {
	text-align: center;
	margin: 1rem 0;
}

/* Hero section on homepage */
.hero-section {
	text-align: center;
	margin: 2rem 0;
}

.hero-logo {
	width: 200px;
	height: 200px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
}

/* Episode styling */
.episode-preview,
.episode-item,
.episode-full {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--pico-muted-border-color);
}

.episode-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	color: var(--pico-muted-color);
	font-size: 0.9rem;
	margin: 0.5rem 0 1rem 0;
}

/* Audio player */
audio {
	width: 100%;
	margin: 1rem 0;
}

.audio-player {
	background: var(--pico-card-background-color);
	padding: 1.5rem;
	border-radius: var(--pico-border-radius);
	margin: 2rem 0;
}

.download-links {
	margin-top: 1rem;
	font-size: 0.9rem;
}

.download-links a {
	margin-right: 1rem;
}

/* Show notes */
.show-notes {
	background: var(--pico-card-background-color);
	padding: 1.5rem;
	border-radius: var(--pico-border-radius);
	margin: 2rem 0;
}

.show-notes h2 {
	margin-top: 0;
}

/* Tags */
.tags {
	margin: 2rem 0;
}

.tags ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.tags li {
	display: inline;
}

/* Episode navigation */
.episode-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--pico-muted-border-color);
}

.episode-navigation a {
	max-width: 45%;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin: 3rem 0;
}

/* Podcast description */
.podcast-description {
	font-size: 1.1rem;
	margin: 2rem 0;
	line-height: 1.6;
}

/* Blockquotes */
blockquote,
blockquote p {
	font-style: italic !important;
}

article blockquote,
article blockquote p {
	font-style: italic !important;
}

/* Footer adjustments */
footer {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--pico-muted-border-color);
	text-align: center;
}

footer p {
	margin: 0.5rem 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.episode-meta {
		flex-direction: column;
		gap: 0.25rem;
	}

	.episode-navigation {
		flex-direction: column;
		gap: 1rem;
	}

	.episode-navigation a {
		max-width: 100%;
	}
}
