.seak-as-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	vertical-align: middle;
}

/* ── Lockdown : rien ne bouge dans le wrap ── */
.seak-as-wrap,
.seak-as-wrap:hover,
.seak-as-wrap:focus,
.seak-as-wrap:active,
.seak-as-wrap *,
.seak-as-wrap *:hover,
.seak-as-wrap *:focus,
.seak-as-wrap *:active {
	transform: none !important;
	transition-property: opacity, color, fill, stroke, background-color !important;
	transition-duration: 0s !important;
}

.seak-as-toggle,
.seak-as-toggle:hover,
.seak-as-toggle:focus,
.seak-as-toggle:focus-visible,
.seak-as-toggle:active {
	--seak-as-size: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--seak-as-size);
	height: var(--seak-as-size);
	padding: 0 !important;
	margin: 0 !important;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	line-height: 1 !important;
	opacity: 1;
	flex-shrink: 0;
}

.seak-as-toggle .seak-as-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.seak-as-toggle .seak-as-icon-off {
	display: none;
}

.seak-as-toggle.is-muted .seak-as-icon-on {
	display: none;
}

.seak-as-toggle.is-muted .seak-as-icon-off {
	display: inline-flex;
}

.seak-as-toggle.is-muted {
	opacity: .55;
}

/* ── Now playing label ── */
.seak-as-now-playing {
	display: inline-flex;
	align-items: center;
	max-width: 220px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: .82em;
	font-weight: 400;
	letter-spacing: .01em;
	color: currentColor;
	opacity: 0;
	pointer-events: none;
	flex-shrink: 0;
}

.seak-as-now-playing.is-visible {
	opacity: .85;
	pointer-events: auto;
}

.seak-as-now-playing::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 8px;
	border-radius: 50%;
	background: currentColor;
	opacity: .5;
	flex-shrink: 0;
	animation: seak-as-blink 1.6s ease-in-out infinite;
}

@keyframes seak-as-blink {
	0%, 100% { opacity: .25; }
	50%      { opacity: .85; }
}

@media (prefers-reduced-motion: reduce) {
	.seak-as-now-playing::before { animation: none; }
}
