/* AudioIgniter Lyrics Modal */
.nurc-ai-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.nurc-ai-modal.is-open {
	display: flex;
}

.nurc-ai-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.nurc-ai-modal-panel {
	position: relative;
	z-index: 2;
	width: min(760px, 100%);
	max-height: min(86vh, 900px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 70px rgba(0,0,0,.35);
	overflow: hidden;
	box-sizing: border-box;
}

.nurc-ai-modal-content {
	max-height: min(86vh, 900px);
	overflow-y: auto;
	padding: 42px 48px 48px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.nurc-ai-modal-kicker {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #4b79a1;
	margin-bottom: 8px;
}

#nurc-ai-lyrics-title {
	margin: 0 35px 28px 0;
	font-size: clamp(25px, 4vw, 36px);
	line-height: 1.15;
	color: #173b5e;
}

#nurc-ai-lyrics-body {
	font-size: 18px;
	line-height: 1.75;
	color: #252525;
}

#nurc-ai-lyrics-body p {
	margin: 0 0 1.25em;
}

#nurc-ai-lyrics-body strong {
	color: #173b5e;
}

.nurc-ai-modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: #173b5e;
	color: #fff;
	font-size: 29px;
	line-height: 42px;
	padding: 0;
	cursor: pointer;
}

.nurc-ai-modal-close:hover,
.nurc-ai-modal-close:focus {
	background: #285f8f;
	color: #fff;
}

html.nurc-ai-modal-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.nurc-ai-modal {
		padding: 8px;
		align-items: stretch;
	}

	.nurc-ai-modal-panel {
		width: 100%;
		max-height: 100%;
		border-radius: 10px;
	}

	.nurc-ai-modal-content {
		max-height: 100%;
		padding: 38px 22px 28px;
	}

	#nurc-ai-lyrics-title {
		font-size: 27px;
		margin-bottom: 22px;
	}

	#nurc-ai-lyrics-body {
		font-size: 17px;
		line-height: 1.7;
	}

	.nurc-ai-modal-close {
		top: 7px;
		right: 8px;
		width: 38px;
		height: 38px;
		font-size: 26px;
		line-height: 38px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.nurc-ai-modal.is-open .nurc-ai-modal-panel {
		animation: nurc-ai-lyrics-in .18s ease-out;
	}

	@keyframes nurc-ai-lyrics-in {
		from { opacity: 0; transform: translateY(12px) scale(.985); }
		to   { opacity: 1; transform: translateY(0) scale(1); }
	}
}
