.ppw-player {
	--ppw-purple: #6a1bb0;
	--ppw-purple-dark: #57108f;
	--ppw-navy: rgb(96,23,155);
	--ppw-blue: #2d6fb1;
	--ppw-panel: #f9fcff;
	--ppw-border: #d7e4ef;
	--ppw-text: #274b68;
	border: 1px solid var(--ppw-border);
	/*border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);*/
	margin-bottom:15px;
	padding: 1.35rem;
	/*box-shadow: 0 10px 24px rgba(29, 58, 87, 0.06);*/
	position: relative;
	overflow: hidden;
}

.ppw-player::before {
	/*content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ppw-purple) 0%, #8d48d8 100%);*/
}

.ppw-now-playing {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.1rem;
}

.ppw-artwork {
	width: 94px;
	height: 94px;
	object-fit: cover;
	border-radius: 18px;
	flex-shrink: 0;
	border: 3px solid #ffffff;
	box-shadow: 0 6px 18px rgba(106, 27, 176, 0.14);
	background: #f2f7fb;
}

.ppw-meta {
	min-width: 0;
	padding-top: 0.1rem;
}

.ppw-label,
.ppw-title,
.ppw-episode-title {
	font-family: Oswald, 'Arial Narrow', Arial, sans-serif;
}

.ppw-label {
	margin: 0 0 0.35rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ppw-blue);
}

.ppw-title {
	margin: 0;
	font-size: 2rem;
	line-height: 1.05;
	font-weight: 700;
	color: var(--ppw-navy);
}

.ppw-date,
.ppw-description,
.ppw-episode-date {
	color: var(--ppw-text);
}

.ppw-date {
	margin: 0.55rem 0 0;
	font-size: 0.95rem;
}

.ppw-description {
	margin: 0.7rem 0 0;
	font-size: 0.98rem;
	line-height: 1.55;
	max-width: 56ch;
}

.ppw-audio {
	width: 100%;
	margin-bottom: 1.2rem;
	border-radius: 999px;
	background: #eef4f9;
}

.ppw-playlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.ppw-playlist-item {
	margin: 0;
}

.ppw-episode-button {
	width: 100%;
	text-align: left;
	border: 1px solid #d5e1ea;
	background: #ffffff;
	border-radius: 16px;
	padding: 1rem 1rem 0.95rem;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	box-shadow: 0 1px 0 rgba(25, 50, 71, 0.02);
}

.ppw-episode-button:hover,
.ppw-episode-button:focus {
	transform: translateY(-1px);
	border-color: #a86be1;
	box-shadow: 0 10px 22px rgba(39, 75, 104, 0.08);
	outline: none;
	background-color:white;
}

.ppw-episode-button.is-active {
	border-color: var(--ppw-navy);
	background: var(--ppw-navy);
	box-shadow: 0 12px 24px rgba(25, 50, 71, 0.18);
}

.ppw-episode-button.is-active .ppw-episode-title,
.ppw-episode-button.is-active .ppw-episode-date {
	color: #ffffff;
}

.ppw-episode-title {
	/*font-size: 1.7rem;
	line-height: 1.05;*/
	font-weight: 700;
	color: var(--ppw-navy);
}

.ppw-episode-date {
	font-size: 0.95rem;
	white-space: nowrap;
}

@media (max-width: 782px) {
	.ppw-title {
		font-size: 1.7rem;
	}

	.ppw-episode-title {
		font-size: 1.45rem;
	}
}

@media (max-width: 640px) {
	.ppw-player {
		padding: 1rem;
		border-radius: 20px;
	}

	.ppw-now-playing {
		flex-direction: column;
	}

	.ppw-artwork {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		max-width: 180px;
	}

	.ppw-title {
		font-size: 1.5rem;
	}

	.ppw-episode-button {
		flex-direction: column;
		align-items: flex-start;
	}

	.ppw-episode-title {
		font-size: 1.3rem;
	}

	.ppw-episode-date {
		white-space: normal;
	}
}
