/* =========================================================
   PODCAST PAGE
   ========================================================= */

.podcast-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 3.5rem 2rem 5rem;
}

.podcast-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 400px);
	gap: 3rem;
	align-items: center;
	padding: 1rem 0 3.5rem;
	border-bottom: 1px solid rgba(27, 29, 58, 0.08);
}

.podcast-kicker,
.section-kicker,
.podcast-panel__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #5a54ff;
}

.podcast-hero h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(2.8rem, 6vw, 5rem);
	line-height: 0.96;
	letter-spacing: -0.045em;
	max-width: 10ch;
	color: #1b1d3a;
}

.podcast-subhead {
	max-width: 42rem;
	margin: 0 0 2rem;
	font-size: 1.16rem;
	line-height: 1.7;
	color: #4a4f68;
}

.podcast-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.podcast-panel {
	background: #f6f7ff;
	border: 1px solid rgba(90, 84, 255, 0.12);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: 0 18px 50px rgba(27, 29, 58, 0.08);
}

.podcast-panel__list {
	margin: 0;
	padding-left: 1.1rem;
	color: #343957;
	line-height: 1.75;
}

.podcast-panel__list li + li {
	margin-top: 0.65rem;
}

.podcast-section {
	padding: 4rem 0;
	border-bottom: 1px solid rgba(27, 29, 58, 0.08);
}

.podcast-section:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.podcast-section__intro {
	max-width: 760px;
	margin-bottom: 2rem;
}

.podcast-section__intro h2 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #1b1d3a;
}

.podcast-section__intro p {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	line-height: 1.75;
	color: #4a4f68;
}

.podcast-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
}

.podcast-card {
	background: #ffffff;
	border: 1px solid rgba(27, 29, 58, 0.08);
	border-radius: 22px;
	padding: 1.5rem;
	box-shadow: 0 12px 34px rgba(27, 29, 58, 0.05);
}

.podcast-card h3 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	line-height: 1.25;
	color: #1b1d3a;
}

.podcast-card p {
	margin: 0;
	color: #4a4f68;
	line-height: 1.7;
}

.guest-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.guest-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1rem;
	border-radius: 999px;
	background: #f6f7ff;
	border: 1px solid rgba(90, 84, 255, 0.14);
	color: #1b1d3a;
	font-weight: 600;
	line-height: 1.2;
}

.podcast-section--cta {
	padding-top: 4.5rem;
}

.podcast-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	border-radius: 28px;
	background: linear-gradient(180deg, #f7f8ff 0%, #eef1ff 100%);
	border: 1px solid rgba(90, 84, 255, 0.12);
}

.podcast-cta h2 {
	margin: 0 0 0.9rem;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #1b1d3a;
}

.podcast-cta p {
	margin: 0;
	max-width: 44rem;
	line-height: 1.75;
	color: #4a4f68;
}

@media (max-width: 960px) {
	.podcast-hero,
	.podcast-cta,
	.podcast-grid {
		grid-template-columns: 1fr;
		display: grid;
	}

	.podcast-cta {
		padding: 1.5rem;
	}

	.podcast-page {
		padding: 2.5rem 1.25rem 4rem;
	}
}

@media (max-width: 640px) {
	.podcast-grid {
		grid-template-columns: 1fr;
	}

	.podcast-hero h1 {
		max-width: none;
	}

	.podcast-actions {
		flex-direction: column;
		align-items: stretch;
	}
}

.podcast-page .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.9rem 1.25rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.podcast-page .button:hover {
	transform: translateY(-1px);
}

.podcast-page .button--primary {
	background: #5a54ff;
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(90, 84, 255, 0.28);
}

.podcast-page .button--secondary {
	background: #ffffff;
	color: #1b1d3a;
	border: 1px solid rgba(27, 29, 58, 0.12);
}