/* Podcast Spotify Embed — frontend grid styles
   Matches the lavender/indigo Elementor design provided by the client. */

.pse-podcast-wrap {
	max-width: 1200px;
	margin: 0 auto;
}

/* --- Filter tabs --- */
.pse-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
}

.pse-tab {
	font-family: inherit;
	font-size: 15px;
	background: transparent;
	border: none;
	color: #4c5ba8;
	padding: 10px 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.pse-tab:hover {
	background: rgba(76, 91, 168, 0.08);
}

.pse-tab.is-active {
	color: #2a3577;
	font-weight: 600;
	box-shadow: inset 0 0 0 1.5px #2a3577;
}

/* --- Grid --- */
.pse-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

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

/* --- Card --- */
.pse-card {
	position: relative;
	background: linear-gradient(135deg, #c7cdf0 0%, #ffffff 55%, #ffffff 100%);
	border-radius: 4px;
	padding: 28px;
	min-height: 340px;
	display: flex;
	flex-direction: column;
}

.pse-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}

.pse-ep-number {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 56px;
	color: #4c5ba8;
	line-height: 1;
}

.pse-ep-date {
	font-size: 14px;
	color: #4c5ba8;
	margin-top: 6px;
}

.pse-cat-label {
	font-size: 13px;
	color: #8b93c9;
	text-transform: none;
	margin: 0 0 8px;
}

.pse-ep-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 22px;
	color: #1a2255;
	margin: 0 0 16px;
	line-height: 1.3;
}

.pse-ep-excerpt {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}

.pse-embed-slot {
	margin-top: 16px;
}

.pse-embed-slot iframe {
	width: 100%;
	height: 232px;
	border: none;
	border-radius: 12px;
}

.pse-grid-single {
	display: block;
	max-width: 420px;
}

.pse-empty {
	text-align: center;
	color: #666;
	grid-column: 1 / -1;
}
