/* Studio shout-out recorder — syncs with global radio player listener state */
.css-studio-shoutout {
	--css-shoutout-width: 365px;
	--css-shoutout-height: 265px;
	max-width: 100%;
	margin: 0 auto 1.5rem;
}

.css-studio-shoutout__frame {
	position: relative;
	width: min(100%, var(--css-shoutout-width));
	max-width: 100%;
	margin: 0 auto;
}

.css-studio-shoutout__iframe {
	display: block;
	width: 100%;
	max-width: var(--css-shoutout-width);
	height: var(--css-shoutout-height);
	max-height: min(var(--css-shoutout-height), 70vh);
	border: 0;
	vertical-align: top;
}

.css-studio-shoutout__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 1rem;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 2;
	text-align: center;
}

.css-studio-shoutout--radio-on .css-studio-shoutout__overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.css-studio-shoutout__mute-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.css-studio-shoutout__mute-icon svg {
	display: block;
	width: clamp(40px, 12vw, 56px);
	height: auto;
}

.css-studio-shoutout__overlay-text {
	margin: 0;
	max-width: 16rem;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.css-studio-shoutout--radio-on .css-studio-shoutout__iframe {
	pointer-events: none;
}
