.srapp-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 900px;
}

.srapp-player {
	background: #f5f6f8;
	border-radius: 14px;
	padding: 20px;
	box-sizing: border-box;
}

.srapp-player__row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.srapp-player__art {
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	border-radius: 10px;
	overflow: hidden;
	background: #dfe2e6;
}

.srapp-player__art img,
.srapp-player__art-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.srapp-player__body {
	flex: 1;
	min-width: 0;
}

.srapp-player__title {
	margin: 0 0 2px;
	font-size: 19px;
	line-height: 1.3;
	font-weight: 700;
	color: #16181c;
}

.srapp-player__meta {
	margin: 0 0 10px;
	font-size: 13px;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 6px;
}

.srapp-player__subtitle {
	font-weight: 600;
}

.srapp-player__meta-dot {
	color: #c9cdd3;
}

.srapp-player__date {
	white-space: nowrap;
}

.srapp-player__controls {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.srapp-play-btn {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #16181c;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.srapp-play-btn svg {
	pointer-events: none;
}

.srapp-waveform {
	position: relative;
	flex: 1;
	height: 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.srapp-waveform__bars {
	display: flex;
	align-items: center;
	gap: 2px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.srapp-waveform__bars span {
	flex: 1 0 2px;
	max-width: 2px;
	background: #c9cdd3;
	border-radius: 1px;
}

.srapp-waveform__progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	overflow: hidden;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.srapp-waveform__progress::before {
	content: '';
	position: absolute;
	inset: 0;
}

.srapp-waveform__progress .srapp-waveform__bars span {
	background: #16181c;
}

.srapp-time {
	flex: 0 0 auto;
	font-size: 12px;
	color: #8b8f96;
	white-space: nowrap;
	display: flex;
	gap: 6px;
}

.srapp-player__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.srapp-skip {
	background: none;
	border: 1px solid #d5d8dc;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #4b4f56;
	font-size: 10px;
	position: relative;
}

.srapp-skip::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.srapp-skip__num {
	font-weight: 600;
}

.srapp-speed,
.srapp-more-info {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #16181c;
	padding: 4px 2px;
}

.srapp-more-info {
	color: #4b4f56;
	font-weight: 500;
}

.srapp-more-info-panel {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e2e4e8;
	font-size: 14px;
	color: #4b4f56;
}

@media (max-width: 600px) {
	.srapp-player__row {
		gap: 12px;
	}
	.srapp-player__art {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}
	.srapp-player__actions {
		gap: 10px;
	}
	.srapp-time {
		display: none;
	}
}

/* ---------- wrap / subscribe bar ---------- */

.srapp-wrap {
	max-width: 900px;
}

.srapp-subscribe {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.srapp-subscribe__label {
	font-size: 13px;
	font-weight: 700;
	color: #4b4f56;
	margin-right: 2px;
}

.srapp-subscribe__btn {
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	background: #16181c;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.srapp-subscribe__btn:hover {
	opacity: 0.85;
	color: #fff;
}

.srapp-subscribe__btn--spotify { background: #1DB954; }
.srapp-subscribe__btn--apple   { background: #A855F7; }
.srapp-subscribe__btn--youtube { background: #FF0000; }
.srapp-subscribe__btn--rss     { background: #F97316; }

/* ---------- toolbar: search + tabs ---------- */

.srapp-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.srapp-search__input {
	width: 100%;
	max-width: 260px;
	padding: 9px 14px;
	border: 1px solid #d5d8dc;
	border-radius: 999px;
	font-size: 14px;
	box-sizing: border-box;
}

.srapp-search__input:focus {
	outline: 2px solid #16181c;
	outline-offset: 1px;
}

.srapp-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.srapp-tab {
	background: #eef0f2;
	border: none;
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #4b4f56;
	cursor: pointer;
}

.srapp-tab.is-active {
	background: #16181c;
	color: #fff;
}

/* ---------- new badge ---------- */

.srapp-player {
	position: relative;
}

.srapp-badge-new {
	position: absolute;
	top: 14px;
	right: 14px;
	background: #16A34A;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
}

/* ---------- chapters ---------- */

.srapp-chapters {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.srapp-chapter {
	background: none;
	border: none;
	text-align: left;
	padding: 4px 0;
	font-size: 13px;
	color: #16181c;
	cursor: pointer;
	display: block;
	width: 100%;
}

.srapp-chapter:hover {
	color: #4b4f56;
}

.srapp-chapter__time {
	display: inline-block;
	min-width: 46px;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: #6b7280;
}

/* ---------- load more ---------- */

.srapp-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.srapp-load-more {
	background: #eef0f2;
	border: none;
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	color: #16181c;
	cursor: pointer;
}

.srapp-load-more:disabled {
	opacity: 0.6;
	cursor: default;
}

.srapp-empty {
	color: #6b7280;
	font-size: 14px;
}

/* ---------- toast ---------- */

.srapp-toast {
	position: fixed;
	left: 50%;
	bottom: 90px;
	transform: translate(-50%, 12px);
	background: #16181c;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 999px;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 9999;
	max-width: 90vw;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.srapp-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* ---------- sticky mini player ---------- */

.srapp-mini-player {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translate(-50%, 20px);
	width: min(520px, calc(100vw - 32px));
	background: #16181c;
	color: #fff;
	border-radius: 14px;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 9998;
}

.srapp-mini-player.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.srapp-mini-player__art {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	background-color: #333;
}

.srapp-mini-player__info {
	flex: 1;
	min-width: 0;
}

.srapp-mini-player__title {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 6px;
}

.srapp-mini-player__progress {
	height: 3px;
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
	overflow: hidden;
}

.srapp-mini-player__progress-fill {
	height: 100%;
	width: 0%;
	background: #fff;
}

.srapp-mini-player__toggle,
.srapp-mini-player__close {
	flex: 0 0 auto;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.srapp-mini-player__close {
	font-size: 20px;
	opacity: 0.7;
}

/* ---------- related episodes ---------- */

.srapp-related {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e2e4e8;
}

.srapp-related__title {
	font-size: 16px;
	margin-bottom: 14px;
}

.srapp-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.srapp-related__item {
	display: block;
	text-decoration: none;
	color: inherit;
}

.srapp-related__item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 8px;
}

.srapp-related__item-title {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #16181c;
	margin-bottom: 2px;
}

.srapp-related__item-date {
	display: block;
	font-size: 12px;
	color: #8b8f96;
}

/* ---------- transcript shortcode ---------- */

.srapp-transcript {
	max-width: 760px;
	font-size: 16px;
	line-height: 1.7;
	color: #24262b;
}

.srapp-transcript__title {
	font-size: 20px;
	margin-bottom: 14px;
}

.srapp-transcript__body p {
	margin: 0 0 1em;
}

.srapp-transcript-missing {
	color: #6b7280;
	font-size: 14px;
	font-style: italic;
}

.srapp-wrap--single {
	margin-bottom: 28px;
}
