:root {
	--podcast-bg: #fbfbf8;
	--podcast-ink: #16201b;
	--podcast-muted: #5f675f;
	--podcast-accent: #0f766e;
	--podcast-line: #d8ddd5;
}

.podcast-site {
	background: var(--podcast-bg);
	color: var(--podcast-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.podcast-skip {
	position: absolute;
	left: -999px;
	top: 1rem;
}

.podcast-skip:focus {
	left: 1rem;
	z-index: 10;
	background: white;
	padding: .5rem .75rem;
}

.podcast-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1rem;
}

.podcast-hero {
	padding: 4rem 0 3rem;
	background: #e8f2ef;
	background-position: center;
	background-size: cover;
}

.podcast-hero[style] {
	color: white;
}

.podcast-hero h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1;
	margin: 0 0 1rem;
}

.podcast-section {
	padding: 3rem 0;
	border-top: 1px solid var(--podcast-line);
}

.podcast-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.podcast-card {
	background: white;
	border: 1px solid var(--podcast-line);
	border-radius: 8px;
	padding: 1rem;
}

.podcast-card img,
.podcast-cover {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
	background: #eef1ed;
}

.podcast-avatar {
	aspect-ratio: 1;
	border-radius: 999px;
	max-width: 160px;
}

.podcast-button,
.podcast-platforms a,
.podcast-newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: .55rem .8rem;
	border-radius: 6px;
	background: var(--podcast-accent);
	color: white;
	border: 0;
	text-decoration: none;
}

.podcast-platforms {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
}

.podcast-socials {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
}

.podcast-player {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #101815;
	border-radius: 8px;
	overflow: hidden;
}

.podcast-player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.podcast-pagination {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.podcast-newsletter {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
}

.podcast-newsletter input {
	min-height: 2.5rem;
	min-width: min(22rem, 100%);
	padding: .55rem .7rem;
	border: 1px solid var(--podcast-line);
	border-radius: 6px;
}

.podcast-muted {
	color: var(--podcast-muted);
}

@media (max-width: 640px) {
	.podcast-hero {
		padding: 2.5rem 0;
	}
	.podcast-newsletter,
	.podcast-newsletter input,
	.podcast-newsletter button {
		width: 100%;
	}
}
