/**
 * FISM Podcast Player — Studio Console UI
 * v1.1.0
 *
 * Deliberately scoped under .fism-pod. The high-contrast navy / warm gold
 * palette matches the Financial Issues site while keeping the player readable
 * inside Elementor and mobile app webviews.
 */

.fism-pod {
	--fism-ink: #07111d;
	--fism-navy: #0c1c2f;
	--fism-navy-2: #122a44;
	--fism-navy-3: #1a3857;
	--fism-gold: #ea9a32;
	--fism-gold-2: #f6b85d;
	--fism-cream: #f5efe4;
	--fism-white: #ffffff;
	--fism-text: #f7f9fc;
	--fism-muted: #aab7c7;
	--fism-line: rgba(255,255,255,.12);
	--fism-line-strong: rgba(234,154,50,.36);
	--fism-danger: #ffb6a5;
	--fism-shadow: 0 20px 55px rgba(3, 10, 18, .22);

	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--fism-text);
	text-align: left;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 16px;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 8%, rgba(234,154,50,.16), transparent 28%),
		linear-gradient(145deg, #07111d 0%, #0b1a2b 54%, #0d2136 100%);
	box-shadow: var(--fism-shadow);
}

.fism-pod::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: .3;
	background-image:
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

.fism-pod *,
.fism-pod *::before,
.fism-pod *::after {
	box-sizing: border-box;
}

.fism-pod [hidden] {
	display: none !important;
}

.fism-pod__heading {
	margin: 0;
	padding: 18px 22px 0;
	font-size: 1.15rem;
	line-height: 1.25;
	font-weight: 700;
	color: var(--fism-text);
}

/* ---------- Now playing / console ---------- */

.fism-pod__stage {
	position: relative;
	display: grid;
	grid-template-columns: 166px minmax(0, 1fr);
	gap: 22px;
	padding: 24px;
	border-bottom: 1px solid var(--fism-line);
}

.fism-pod--no-art .fism-pod__stage {
	grid-template-columns: minmax(0, 1fr);
}

.fism-pod__art-shell {
	position: relative;
	align-self: start;
	aspect-ratio: 1;
	border-radius: 12px;
	padding: 1px;
	background: linear-gradient(145deg, rgba(234,154,50,.9), rgba(255,255,255,.12) 48%, rgba(234,154,50,.18));
	box-shadow: 0 14px 32px rgba(0,0,0,.28);
	overflow: hidden;
}

.fism-pod__art-shell::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 11px;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.fism-pod__art {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 11px;
	background: var(--fism-navy-2);
}

.fism-pod__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fism-pod__statusline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.fism-pod__eyebrow,
.fism-pod__status {
	margin: 0;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.fism-pod__eyebrow {
	color: var(--fism-gold-2);
}

.fism-pod__status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #cbd6e2;
	white-space: nowrap;
}

.fism-pod__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fism-gold);
	box-shadow: 0 0 0 4px rgba(234,154,50,.12), 0 0 12px rgba(234,154,50,.5);
}

.fism-pod__title {
	margin: 0 0 8px !important;
	padding: 0 !important;
	font-size: clamp(1.22rem, 2.7vw, 1.72rem) !important;
	line-height: 1.12 !important;
	font-weight: 700 !important;
	letter-spacing: -.025em;
	color: var(--fism-white) !important;
	background: none !important;
	border: 0 !important;
	text-transform: none !important;
	overflow-wrap: anywhere;
}

.fism-pod__sub {
	margin: 0 !important;
	font-size: .82rem;
	line-height: 1.4;
	font-weight: 500;
	color: var(--fism-muted);
	font-variant-numeric: tabular-nums;
}

.fism-pod__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
}

.fism-pod__chip {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 4px 8px;
	border: 1px solid rgba(234,154,50,.27);
	border-radius: 999px;
	background: rgba(234,154,50,.08);
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: #f2c581;
}

/* Native audio is the progressive fallback. JS adds .is-enhanced and swaps
   it for the branded controls below. */
.fism-pod__transport {
	padding: 0 24px 22px;
}

.fism-pod__audio {
	display: block;
	width: 100%;
	max-width: 100%;
}

.fism-pod__console {
	display: none;
}

.fism-pod.is-enhanced .fism-pod__audio {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.fism-pod.is-enhanced .fism-pod__console {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 12px;
	background: rgba(255,255,255,.055);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
	backdrop-filter: blur(10px);
}

.fism-pod__control,
.fism-pod__ep {
	-webkit-appearance: none !important;
	appearance: none !important;
	font-family: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.fism-pod__control {
	position: relative;
	flex: none;
	display: inline-grid !important;
	place-items: center;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(255,255,255,.12) !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,.06) !important;
	color: var(--fism-text) !important;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}

.fism-pod__control:hover {
	transform: translateY(-1px);
	border-color: rgba(234,154,50,.55) !important;
	background: rgba(234,154,50,.1) !important;
}

.fism-pod__control:focus-visible,
.fism-pod__ep:focus-visible,
.fism-pod__range:focus-visible {
	outline: 2px solid var(--fism-gold) !important;
	outline-offset: 2px;
}

.fism-pod__control--play {
	width: 50px;
	height: 50px;
	border-color: var(--fism-gold) !important;
	background: var(--fism-gold) !important;
	box-shadow: 0 0 0 5px rgba(234,154,50,.11), 0 8px 24px rgba(234,154,50,.18) !important;
}

.fism-pod__control--play:hover {
	background: var(--fism-gold-2) !important;
}

.fism-pod__play-glyph {
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid var(--fism-ink);
}

.fism-pod.is-playing .fism-pod__play-glyph {
	width: 12px;
	height: 14px;
	margin-left: 0;
	border: 0;
	background: linear-gradient(to right, var(--fism-ink) 0 4px, transparent 4px 8px, var(--fism-ink) 8px 12px);
}

.fism-pod__control--skip {
	width: 34px;
	height: 34px;
	font-size: 9px !important;
	font-weight: 800 !important;
	letter-spacing: -.02em;
}

.fism-pod__progress {
	min-width: 0;
	display: grid;
	grid-template-columns: auto minmax(60px, 1fr) auto;
	align-items: center;
	gap: 8px;
}

.fism-pod__time {
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	color: #c7d2df;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.fism-pod__range {
	width: 100%;
	min-width: 0;
	height: 20px;
	margin: 0;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	cursor: pointer;
}

.fism-pod__range::-webkit-slider-runnable-track {
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(to right, var(--fism-gold) 0 var(--fism-progress, 0%), rgba(255,255,255,.17) var(--fism-progress, 0%) 100%);
}

.fism-pod__range::-webkit-slider-thumb {
	width: 14px;
	height: 14px;
	margin-top: -5px;
	border: 2px solid var(--fism-gold);
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	background: var(--fism-white);
	box-shadow: 0 0 0 4px rgba(234,154,50,.1);
}

.fism-pod__range::-moz-range-track {
	height: 4px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.17);
}

.fism-pod__range::-moz-range-progress {
	height: 4px;
	border-radius: 999px;
	background: var(--fism-gold);
}

.fism-pod__range::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border: 2px solid var(--fism-gold);
	border-radius: 50%;
	background: var(--fism-white);
}

.fism-pod__control--mute {
	width: 34px;
	height: 34px;
}

.fism-pod__speaker {
	position: relative;
	width: 14px;
	height: 14px;
}

.fism-pod__speaker::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 5px;
	height: 6px;
	border-radius: 1px;
	background: currentColor;
}

.fism-pod__speaker::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 2px;
	width: 8px;
	height: 10px;
	clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 68%);
	background: currentColor;
}

.fism-pod__control--mute::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 9px;
	width: 7px;
	height: 7px;
	border: 1px solid currentColor;
	border-left-color: transparent;
	border-top-color: transparent;
	border-radius: 50%;
	transform: rotate(-45deg);
}

.fism-pod.is-muted .fism-pod__control--mute::after {
	right: 7px;
	top: 7px;
	width: 1px;
	height: 18px;
	border: 0;
	border-radius: 0;
	background: var(--fism-gold);
	transform: rotate(45deg);
}

.fism-pod__error {
	margin: -9px 24px 18px !important;
	padding: 10px 12px !important;
	border: 1px solid rgba(255,182,165,.28);
	border-radius: 8px;
	background: rgba(151,42,22,.2);
	color: var(--fism-danger);
	font-size: .78rem;
	line-height: 1.45;
}

/* ---------- Playlist ---------- */

.fism-pod__library {
	background: rgba(3,10,18,.24);
}

.fism-pod__library-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px 11px;
}

.fism-pod__library-title {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #e0e7ef !important;
}

.fism-pod__library-count {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #77889c;
}

.fism-pod__list {
	margin: 0 !important;
	padding: 0 10px 10px !important;
	max-height: 410px;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(234,154,50,.45) rgba(255,255,255,.05);
}

.fism-pod__list::-webkit-scrollbar {
	width: 7px;
}

.fism-pod__list::-webkit-scrollbar-track {
	background: rgba(255,255,255,.04);
	border-radius: 10px;
}

.fism-pod__list::-webkit-scrollbar-thumb {
	background: rgba(234,154,50,.42);
	border-radius: 10px;
}

.fism-pod__row {
	margin: 0 !important;
	padding: 0 !important;
	border-top: 1px solid rgba(255,255,255,.07);
}

.fism-pod__row:first-child {
	border-top: 0;
}

.fism-pod__ep {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	width: 100% !important;
	min-height: 66px;
	margin: 0 !important;
	padding: 9px 10px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: var(--fism-text) !important;
	text-align: left !important;
	cursor: pointer;
	transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.fism-pod__ep:hover {
	background: rgba(255,255,255,.055) !important;
}

.fism-pod__ep.is-current {
	background: linear-gradient(90deg, rgba(234,154,50,.13), rgba(234,154,50,.035)) !important;
	box-shadow: inset 2px 0 0 var(--fism-gold) !important;
}

.fism-pod__thumb {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 7px;
	overflow: hidden;
	background: var(--fism-navy-2);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.fism-pod__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .84;
}

.fism-pod__thumb::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: rgba(7,17,29,.78);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}

.fism-pod__thumb::before {
	content: "";
	position: absolute;
	z-index: 2;
	left: calc(50% + 1px);
	top: 50%;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid var(--fism-gold-2);
	transform: translate(-50%, -50%);
}

.fism-pod__ep.is-playing .fism-pod__thumb::before {
	width: 7px;
	height: 9px;
	border: 0;
	background: linear-gradient(to right, var(--fism-gold-2) 0 2px, transparent 2px 5px, var(--fism-gold-2) 5px 7px);
}

.fism-pod__ep-text {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.fism-pod__ep-title {
	display: block;
	min-width: 0;
	font-size: .88rem !important;
	line-height: 1.25 !important;
	font-weight: 650 !important;
	letter-spacing: -.01em;
	color: #f4f7fb !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fism-pod__ep-meta {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: .69rem;
	line-height: 1.2;
	font-weight: 500;
	color: #899aad;
	font-variant-numeric: tabular-nums;
}

.fism-pod__ep-meta span + span::before {
	content: "•";
	margin-right: 7px;
	color: #53677f;
}

.fism-pod__ep-state {
	min-width: 26px;
	font-size: 8px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: right;
	color: #687b92;
}

.fism-pod__ep.is-current .fism-pod__ep-state {
	color: var(--fism-gold-2);
}

/* ---------- Empty state ---------- */

.fism-pod--empty {
	padding: 24px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	background: var(--fism-navy, #0c1c2f);
	color: #cbd6e2;
	text-align: center;
}

.fism-pod--empty p {
	margin: 0;
}

/* ---------- Tablet / phone ---------- */

@media (max-width: 640px) {
	.fism-pod {
		border-radius: 12px;
	}

	.fism-pod__stage {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 14px;
		padding: 16px;
	}

	.fism-pod__title {
		font-size: 1.16rem !important;
	}

	.fism-pod__chips {
		margin-top: 9px;
	}

	.fism-pod__chip:nth-child(2) {
		display: none;
	}

	.fism-pod__status {
		display: none;
	}

	.fism-pod__transport {
		grid-column: 1 / -1;
		padding: 0 16px 16px;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		grid-template-columns: auto minmax(0,1fr) auto;
		gap: 9px;
	}

	.fism-pod__control--skip {
		display: none !important;
	}

	.fism-pod__progress {
		grid-template-columns: minmax(0,1fr);
		gap: 0;
	}

	.fism-pod__time {
		display: none;
	}

	.fism-pod__library-head {
		padding: 14px 15px 9px;
	}

	.fism-pod__list {
		padding: 0 6px 8px !important;
		max-height: 390px;
	}

	.fism-pod__ep {
		grid-template-columns: 42px minmax(0, 1fr) auto;
		gap: 9px;
		min-height: 60px;
		padding: 8px !important;
	}

	.fism-pod__thumb {
		width: 42px;
		height: 42px;
	}

	.fism-pod__ep-title {
		font-size: .82rem !important;
	}

	.fism-pod__ep-meta {
		font-size: .64rem;
	}
}

@media (max-width: 390px) {
	.fism-pod__stage {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 12px;
		padding: 13px;
	}

	.fism-pod__title {
		font-size: 1rem !important;
		line-height: 1.16 !important;
		margin-bottom: 5px !important;
	}

	.fism-pod__sub {
		font-size: .7rem;
	}

	.fism-pod__eyebrow {
		font-size: 8px;
	}

	.fism-pod__chips {
		display: none;
	}

	.fism-pod__transport {
		padding: 0 13px 13px;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		padding: 9px;
	}

	.fism-pod__control--play {
		width: 44px;
		height: 44px;
	}

	.fism-pod__control--mute {
		width: 31px;
		height: 31px;
	}

	.fism-pod__ep-state {
		display: none;
	}

	.fism-pod__ep {
		grid-template-columns: 40px minmax(0,1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fism-pod__control,
	.fism-pod__ep {
		transition: none;
	}
}

/* ======================================================================
   v1.2.0 refinement — better phone proportions + fuller transport tools
   ====================================================================== */

.fism-pod {
	max-width: 720px;
}

.fism-pod__stage {
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
}

.fism-pod__art-shell {
	width: 100%;
	max-width: 132px;
	justify-self: start;
}

.fism-pod__main {
	min-width: 0;
}

.fism-pod__status {
	font-size: 10px;
}

.fism-pod.is-enhanced .fism-pod__console {
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"transport utility"
		"progress progress";
	align-items: center;
	gap: 12px;
	padding: 14px;
}

.fism-pod__cluster {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.fism-pod__cluster--transport {
	grid-area: transport;
	flex-wrap: wrap;
}

.fism-pod__cluster--utility {
	grid-area: utility;
	justify-self: end;
}

.fism-pod__progresswrap {
	grid-area: progress;
	min-width: 0;
}

.fism-pod__progress {
	grid-template-columns: 50px minmax(0, 1fr) 50px;
	gap: 10px;
}

.fism-pod__time {
	font-size: 11px;
}

.fism-pod__control--nav,
.fism-pod__control--speed {
	height: 36px;
	min-width: 58px;
	padding: 0 12px !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.fism-pod__control--speed {
	min-width: 56px;
	color: var(--fism-gold-2) !important;
	border-color: rgba(234,154,50,.35) !important;
	background: rgba(234,154,50,.1) !important;
}

.fism-pod__control--skip {
	width: 38px;
	height: 38px;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .01em;
}

.fism-pod__control--play {
	width: 54px;
	height: 54px;
}

.fism-pod__control--mute {
	width: 38px;
	height: 38px;
}

.fism-pod__play-glyph {
	border-top-width: 8px;
	border-bottom-width: 8px;
	border-left-width: 12px;
}

.fism-pod__library-count {
	font-size: 10px;
}

.fism-pod__list {
	max-height: 420px;
}

.fism-pod__ep {
	align-items: center;
}

.fism-pod__ep-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 700px) {
	.fism-pod__stage {
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 14px;
		padding: 18px;
	}

	.fism-pod__art-shell {
		max-width: 104px;
	}

	.fism-pod__title {
		font-size: 1.45rem !important;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		grid-template-columns: 1fr;
		grid-template-areas:
			"transport"
			"progress"
			"utility";
	}

	.fism-pod__cluster--utility {
		justify-self: start;
	}
}

@media (max-width: 520px) {
	.fism-pod {
		border-radius: 14px;
	}

	.fism-pod__stage {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 12px;
		padding: 15px;
	}

	.fism-pod__art-shell {
		max-width: 88px;
		border-radius: 10px;
	}

	.fism-pod__statusline {
		align-items: flex-start;
		gap: 8px;
	}

	.fism-pod__status {
		display: inline-flex;
		font-size: 9px;
	}

	.fism-pod__title {
		font-size: 1.2rem !important;
		line-height: 1.14 !important;
	}

	.fism-pod__sub {
		font-size: .76rem;
	}

	.fism-pod__chips {
		gap: 6px;
		margin-top: 10px;
	}

	.fism-pod__transport {
		padding: 0 15px 15px;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		padding: 12px;
		gap: 10px;
	}

	.fism-pod__cluster--transport {
		justify-content: space-between;
	}

	.fism-pod__control--nav,
	.fism-pod__control--speed {
		height: 34px;
		min-width: 54px;
		padding: 0 10px !important;
		font-size: 10px !important;
	}

	.fism-pod__control--skip,
	.fism-pod__control--mute {
		width: 36px;
		height: 36px;
	}

	.fism-pod__control--play {
		width: 50px;
		height: 50px;
	}

	.fism-pod__progress {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 8px;
	}

	.fism-pod__time {
		display: block;
		font-size: 10px;
	}

	.fism-pod__list {
		max-height: 360px;
		padding: 0 8px 8px !important;
	}

	.fism-pod__ep {
		grid-template-columns: 42px minmax(0, 1fr);
		padding-right: 10px !important;
	}

	.fism-pod__ep-state {
		display: none;
	}
}

@media (max-width: 390px) {
	.fism-pod__stage {
		grid-template-columns: 78px minmax(0, 1fr);
		padding: 13px;
	}

	.fism-pod__art-shell {
		max-width: 78px;
	}

	.fism-pod__title {
		font-size: 1.06rem !important;
	}

	.fism-pod__sub {
		font-size: .72rem;
	}

	.fism-pod__chips {
		display: none;
	}

	.fism-pod__cluster--transport {
		gap: 6px;
	}

	.fism-pod__control--nav {
		min-width: 50px;
	}

	.fism-pod__control--nav,
	.fism-pod__control--speed {
		font-size: 9px !important;
	}
}

/* ======================================================================
   v1.3.0 redesign — closer to provided inspiration
   Clean editorial card, lighter palette, better button styling
   ====================================================================== */

.fism-pod {
	--fism-ink: #142844;
	--fism-navy: #142844;
	--fism-navy-2: #1f3556;
	--fism-navy-3: #35557c;
	--fism-gold: #cf8b2b;
	--fism-gold-2: #dd9c41;
	--fism-cream: #f7f5ef;
	--fism-white: #ffffff;
	--fism-text: #162b47;
	--fism-muted: #67788f;
	--fism-line: #d8d4cb;
	--fism-line-strong: rgba(207,139,43,.42);
	--fism-danger: #b1462f;
	--fism-shadow: 0 18px 40px rgba(12, 24, 40, .08);

	max-width: 980px;
	border: 1px solid #d9d6cd;
	border-radius: 18px;
	background: #ffffff;
	color: var(--fism-text);
	box-shadow: var(--fism-shadow);
	overflow: hidden;
}

.fism-pod::before {
	display: none;
}

.fism-pod__stage {
	grid-template-columns: 122px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 26px 24px 18px;
	border-bottom: 0;
	background: #ffffff;
}

.fism-pod__art-shell {
	max-width: 122px;
	padding: 0;
	border-radius: 14px;
	background: transparent;
	box-shadow: 0 8px 20px rgba(17, 31, 53, .12);
	border: 1px solid #ded7ca;
}

.fism-pod__art-shell::after {
	display: none;
}

.fism-pod__art {
	border-radius: 13px;
}

.fism-pod__statusline {
	margin-bottom: 10px;
}

.fism-pod__eyebrow,
.fism-pod__library-title,
.fism-pod__library-count,
.fism-pod__chip {
	letter-spacing: .14em;
}

.fism-pod__eyebrow {
	color: var(--fism-gold);
	font-size: .82rem;
}

.fism-pod__status {
	font-size: .78rem;
	font-weight: 700;
	color: var(--fism-muted);
}

.fism-pod__status::before {
	width: 8px;
	height: 8px;
	background: var(--fism-gold);
	box-shadow: 0 0 0 5px rgba(207,139,43,.12);
}

.fism-pod__title {
	margin: 0 0 8px !important;
	font-size: clamp(1.85rem, 4vw, 3rem) !important;
	line-height: 1.05 !important;
	font-weight: 700 !important;
	color: var(--fism-text) !important;
}

.fism-pod__sub {
	font-size: 1rem;
	color: var(--fism-muted);
}

.fism-pod__chips {
	display: none;
}

.fism-pod__transport {
	padding: 0 24px 18px;
	background: #ffffff;
}

.fism-pod.is-enhanced .fism-pod__console {
	grid-template-columns: auto 1fr auto;
	grid-template-areas:
		"transport transport transport"
		"progress progress progress"
		"utility utility utility";
		gap: 14px;
	padding: 18px;
	border: 1px solid #d8d4cb;
	border-radius: 18px;
	background: linear-gradient(180deg, #f7f6f2 0%, #f2f1ec 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
	backdrop-filter: none;
}

.fism-pod__cluster {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.fism-pod__cluster--transport {
	grid-area: transport;
	justify-content: center;
	flex-wrap: wrap;
}

.fism-pod__cluster--utility {
	grid-area: utility;
	justify-content: center;
}

.fism-pod__progresswrap {
	grid-area: progress;
	min-width: 0;
}

.fism-pod__control {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 46px;
	min-width: 46px;
	padding: 0 18px !important;
	border: 1px solid #d0ccc2 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: var(--fism-text) !important;
	font-size: .95rem !important;
	font-weight: 700 !important;
	box-shadow: 0 1px 0 rgba(255,255,255,.7), 0 2px 6px rgba(12,24,40,.05) !important;
}

.fism-pod__control:hover {
	transform: translateY(-1px);
	border-color: rgba(207,139,43,.5) !important;
	background: #fffdf8 !important;
}

.fism-pod__control--play {
	width: 64px;
	height: 64px;
	padding: 0 !important;
	border-color: var(--fism-gold) !important;
	background: linear-gradient(180deg, var(--fism-gold) 0%, var(--fism-gold-2) 100%) !important;
	box-shadow: 0 0 0 7px rgba(207,139,43,.12), 0 10px 24px rgba(207,139,43,.18) !important;
}

.fism-pod__control--play:hover {
	background: linear-gradient(180deg, var(--fism-gold-2) 0%, #e7ac56 100%) !important;
}

.fism-pod__play-glyph {
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid #ffffff;
	margin-left: 4px;
}

.fism-pod.is-playing .fism-pod__play-glyph {
	background: linear-gradient(to right, #ffffff 0 4px, transparent 4px 8px, #ffffff 8px 12px);
}

.fism-pod__control--nav,
.fism-pod__control--skip,
.fism-pod__control--speed {
	min-width: 88px;
	height: 48px;
	padding: 0 18px !important;
	font-size: .95rem !important;
}

.fism-pod__control--skip {
	min-width: 76px;
}

.fism-pod__control--speed {
	border-color: rgba(207,139,43,.42) !important;
	background: #fffaf1 !important;
	color: var(--fism-gold) !important;
}

.fism-pod__control--mute {
	width: 46px;
}

.fism-pod__progress {
	grid-template-columns: 60px minmax(0, 1fr) 60px;
	align-items: center;
	gap: 12px;
}

.fism-pod__time {
	font-size: .95rem;
	font-weight: 600;
	color: var(--fism-muted);
}

.fism-pod__range {
	height: 26px;
}

.fism-pod__range::-webkit-slider-runnable-track {
	height: 6px;
	background: linear-gradient(to right, var(--fism-gold) 0 var(--fism-progress, 0%), #d8d4cb var(--fism-progress, 0%) 100%);
}

.fism-pod__range::-webkit-slider-thumb {
	width: 20px;
	height: 20px;
	margin-top: -7px;
	border: 3px solid var(--fism-gold);
	background: #ffffff;
	box-shadow: 0 0 0 5px rgba(207,139,43,.12);
}

.fism-pod__range::-moz-range-track {
	height: 6px;
	background: #d8d4cb;
}

.fism-pod__range::-moz-range-progress {
	height: 6px;
	background: var(--fism-gold);
}

.fism-pod__range::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border: 3px solid var(--fism-gold);
	background: #ffffff;
}

.fism-pod__error {
	margin: 0 24px 18px !important;
	padding: 13px 16px !important;
	border: 1px solid #e7c8bd;
	border-radius: 12px;
	background: #f8e6e1;
	color: var(--fism-danger);
	font-size: .95rem;
}

.fism-pod__library {
	background: #ffffff;
	border-top: 1px solid #e7e2d8;
}

.fism-pod__library-head {
	padding: 18px 22px 12px;
}

.fism-pod__library-title {
	font-size: .85rem !important;
	color: var(--fism-text) !important;
}

.fism-pod__library-count {
	font-size: .82rem;
	color: var(--fism-muted);
}

.fism-pod__list {
	padding: 0 0 6px !important;
	max-height: 470px;
	background: #ffffff;
	scrollbar-color: rgba(207,139,43,.42) #f1eee7;
}

.fism-pod__list::-webkit-scrollbar-track {
	background: #f1eee7;
}

.fism-pod__list::-webkit-scrollbar-thumb {
	background: rgba(207,139,43,.45);
}

.fism-pod__row {
	padding: 0 0;
}

.fism-pod__row + .fism-pod__row {
	border-top: 1px solid #e8e3d8;
}

.fism-pod__thumb {
	display: none;
}

.fism-pod__ep {
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	width: 100%;
	min-height: 86px;
	padding: 18px 22px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #ffffff !important;
	box-shadow: none !important;
	text-align: left;
}

.fism-pod__ep:hover {
	background: #fbfaf7 !important;
	transform: none;
}

.fism-pod__ep.is-current,
.fism-pod__ep[aria-current="true"] {
	background: #f8f5ed !important;
	box-shadow: inset 4px 0 0 var(--fism-gold);
}

.fism-pod__ep-text {
	min-width: 0;
}

.fism-pod__ep-title {
	font-size: 1.02rem !important;
	font-weight: 700 !important;
	line-height: 1.22;
	color: var(--fism-text) !important;
}

.fism-pod__ep-meta {
	margin-top: 4px;
	font-size: .9rem;
	color: var(--fism-muted);
}

.fism-pod__ep-meta span + span::before {
	background: #9aa8b7;
}

.fism-pod__ep-state {
	min-width: 72px;
	text-align: right;
	font-size: .95rem;
	font-weight: 600;
	color: var(--fism-muted);
}

@media (max-width: 900px) {
	.fism-pod__title {
		font-size: clamp(1.55rem, 4.5vw, 2.2rem) !important;
	}
}

@media (max-width: 640px) {
	.fism-pod {
		border-radius: 16px;
	}

	.fism-pod__stage {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 18px 12px;
	}

	.fism-pod__art-shell {
		max-width: 92px;
		border-radius: 12px;
	}

	.fism-pod__art {
		border-radius: 11px;
	}

	.fism-pod__status {
		display: none;
	}

	.fism-pod__title {
		font-size: 1.35rem !important;
		line-height: 1.12 !important;
	}

	.fism-pod__sub {
		font-size: .92rem;
	}

	.fism-pod__transport {
		padding: 0 18px 14px;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		padding: 14px;
		gap: 12px;
	}

	.fism-pod__cluster--transport {
		justify-content: center;
		gap: 8px;
	}

	.fism-pod__control {
		height: 42px;
		padding: 0 14px !important;
		font-size: .88rem !important;
	}

	.fism-pod__control--play {
		width: 58px;
		height: 58px;
	}

	.fism-pod__control--nav,
	.fism-pod__control--skip,
	.fism-pod__control--speed {
		min-width: 72px;
		height: 42px;
	}

	.fism-pod__control--mute {
		width: 42px;
		min-width: 42px;
	}

	.fism-pod__progress {
		grid-template-columns: 46px minmax(0, 1fr) 46px;
		gap: 10px;
	}

	.fism-pod__time,
	.fism-pod__ep-meta,
	.fism-pod__ep-state {
		font-size: .86rem;
	}

	.fism-pod__library-head {
		padding: 15px 18px 10px;
	}

	.fism-pod__ep {
		min-height: 76px;
		padding: 16px 18px !important;
	}

	.fism-pod__ep-title {
		font-size: .96rem !important;
	}
}

@media (max-width: 430px) {
	.fism-pod__stage {
		grid-template-columns: 1fr;
		padding-top: 16px;
	}

	.fism-pod__art-shell {
		max-width: 90px;
	}

	.fism-pod__main {
		width: 100%;
	}

	.fism-pod__statusline {
		margin-bottom: 8px;
	}

	.fism-pod__eyebrow {
		font-size: .75rem;
	}

	.fism-pod__title {
		font-size: 1.18rem !important;
	}

	.fism-pod__sub {
		font-size: .86rem;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		padding: 12px;
	}

	.fism-pod__cluster--transport {
		justify-content: space-between;
	}

	.fism-pod__control--nav,
	.fism-pod__control--skip,
	.fism-pod__control--speed {
		min-width: calc(50% - 6px);
		flex: 0 0 calc(50% - 6px);
	}

	.fism-pod__control--play {
		order: -1;
		flex: 0 0 100%;
		margin: 0 auto 2px !important;
	}

	.fism-pod__cluster--utility {
		gap: 8px;
	}

	.fism-pod__control--mute,
	.fism-pod__control--speed {
		flex: initial;
	}

	.fism-pod__control--speed {
		min-width: 82px;
	}

	.fism-pod__progress {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 8px;
	}

	.fism-pod__time {
		font-size: .8rem;
	}

	.fism-pod__library-title,
	.fism-pod__library-count {
		font-size: .74rem !important;
	}

	.fism-pod__ep {
		grid-template-columns: 1fr;
		gap: 6px;
		min-height: 0;
	}

	.fism-pod__ep-state {
		display: none;
	}
}

/* ======================================================================
   v1.4.0 compact editorial player
   Less vertical space, clearer controls, artwork restored in episode rows.
   ====================================================================== */

.fism-pod {
	max-width: 820px;
}

.fism-pod__stage {
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 16px;
	padding: 20px 22px 12px;
}

.fism-pod__art-shell {
	max-width: 92px;
	border-radius: 12px;
}

.fism-pod__art {
	border-radius: 11px;
}

.fism-pod__statusline {
	margin-bottom: 6px;
}

.fism-pod__status {
	display: none;
}

.fism-pod__eyebrow {
	font-size: .74rem;
}

.fism-pod__title {
	font-size: clamp(1.45rem, 3vw, 2.15rem) !important;
	line-height: 1.08 !important;
	margin-bottom: 6px !important;
}

.fism-pod__sub {
	font-size: .9rem;
}

.fism-pod__transport {
	padding: 0 22px 16px;
}

.fism-pod.is-enhanced .fism-pod__console {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 13px 14px 12px;
	border-radius: 16px;
	background: #f5f3ee;
}

.fism-pod__compact-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 0;
}

.fism-pod__control {
	flex: 0 0 auto;
	height: 40px;
	min-width: 40px;
	padding: 0 12px !important;
	border-radius: 999px !important;
	font-size: .82rem !important;
	box-shadow: 0 2px 5px rgba(18,40,68,.05) !important;
}

.fism-pod__control--play {
	width: 52px;
	height: 52px;
	min-width: 52px;
	padding: 0 !important;
	box-shadow: 0 0 0 5px rgba(207,139,43,.11), 0 7px 15px rgba(207,139,43,.16) !important;
}

.fism-pod__play-glyph {
	border-top-width: 7px;
	border-bottom-width: 7px;
	border-left-width: 11px;
}

.fism-pod__control--skip {
	min-width: 58px;
	gap: 4px;
	font-weight: 750 !important;
}

.fism-pod__control--skip span:first-child,
.fism-pod__control--skip span:last-child {
	line-height: 1;
}

.fism-pod__control--speed {
	min-width: 58px;
	height: 40px;
	padding: 0 12px !important;
	font-size: .82rem !important;
	text-transform: none;
	letter-spacing: 0;
}

.fism-pod__control--mute {
	width: 40px;
	height: 40px;
	min-width: 40px;
	padding: 0 !important;
}

.fism-pod__progress {
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	gap: 9px;
	width: 100%;
}

.fism-pod__time {
	font-size: .78rem;
	font-weight: 650;
}

.fism-pod__range {
	height: 20px;
}

.fism-pod__range::-webkit-slider-runnable-track {
	height: 5px;
}

.fism-pod__range::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	margin-top: -5.5px;
	border-width: 2px;
	box-shadow: 0 0 0 4px rgba(207,139,43,.1);
}

.fism-pod__range::-moz-range-track,
.fism-pod__range::-moz-range-progress {
	height: 5px;
}

.fism-pod__range::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-width: 2px;
}

.fism-pod__library-head {
	padding: 15px 18px 10px;
}

.fism-pod__list {
	max-height: 430px;
}

/* Restore episode artwork. */
.fism-pod__thumb {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: #e9e6df;
	box-shadow: inset 0 0 0 1px rgba(20,40,68,.08);
}

.fism-pod__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.fism-pod__thumb::after {
	width: 24px;
	height: 24px;
	background: rgba(20,40,68,.86);
}

.fism-pod__thumb::before {
	border-left-color: #ffffff;
}

.fism-pod__ep {
	grid-template-columns: 52px minmax(0, 1fr) auto;
	gap: 12px;
	min-height: 72px;
	padding: 10px 18px !important;
}

.fism-pod__ep-title {
	font-size: .95rem !important;
	line-height: 1.2 !important;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.fism-pod__ep-meta {
	font-size: .78rem;
}

.fism-pod__ep-state {
	font-size: .78rem;
	min-width: 54px;
}

@media (max-width: 640px) {
	.fism-pod__stage {
		grid-template-columns: 74px minmax(0, 1fr);
		gap: 12px;
		padding: 15px 15px 10px;
	}

	.fism-pod__art-shell {
		max-width: 74px;
	}

	.fism-pod__title {
		font-size: 1.12rem !important;
		line-height: 1.13 !important;
	}

	.fism-pod__sub {
		font-size: .8rem;
	}

	.fism-pod__eyebrow {
		font-size: .68rem;
	}

	.fism-pod__transport {
		padding: 0 15px 12px;
	}

	.fism-pod.is-enhanced .fism-pod__console {
		padding: 11px 12px 10px;
		gap: 9px;
	}

	.fism-pod__compact-controls {
		gap: 7px;
	}

	.fism-pod__control {
		height: 36px;
		min-width: 36px;
		padding: 0 9px !important;
		font-size: .75rem !important;
	}

	.fism-pod__control--play {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.fism-pod__control--skip {
		min-width: 52px;
	}

	.fism-pod__control--speed {
		min-width: 54px;
		height: 36px;
		padding: 0 9px !important;
		font-size: .74rem !important;
	}

	.fism-pod__control--mute {
		width: 36px;
		height: 36px;
		min-width: 36px;
	}

	.fism-pod__progress {
		grid-template-columns: 38px minmax(0,1fr) 38px;
		gap: 7px;
	}

	.fism-pod__time {
		font-size: .7rem;
	}

	.fism-pod__library-head {
		padding: 13px 14px 8px;
	}

	.fism-pod__list {
		max-height: 390px;
	}

	.fism-pod__thumb {
		display: block;
		width: 46px;
		height: 46px;
	}

	.fism-pod__ep {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 10px;
		min-height: 64px;
		padding: 9px 14px !important;
	}

	.fism-pod__ep-state {
		display: none;
	}

	.fism-pod__ep-title {
		font-size: .86rem !important;
	}

	.fism-pod__ep-meta {
		font-size: .72rem;
	}
}

@media (max-width: 390px) {
	.fism-pod__stage {
		grid-template-columns: 62px minmax(0, 1fr);
		padding: 13px 12px 9px;
	}

	.fism-pod__art-shell {
		max-width: 62px;
	}

	.fism-pod__title {
		font-size: 1rem !important;
	}

	.fism-pod__sub {
		font-size: .74rem;
	}

	.fism-pod__compact-controls {
		gap: 5px;
	}

	.fism-pod__control--skip {
		min-width: 47px;
		padding: 0 7px !important;
	}

	.fism-pod__control--speed {
		min-width: 48px;
	}

	.fism-pod__control--mute {
		display: inline-flex !important;
	}
}
