/* MSG single.css — song lesson. Reading column ~720px. Video first, then text,
   then one inline opt-in card, then related songs. */

.single .song__header {
	padding-top: 2rem;
	text-align: center;
}
.song__title {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}
.song__artist {
	color: var(--ink-muted);
	font-size: 1.05rem;
	margin-top: -0.25rem;
}

/* YouTube facade */
.song__video { margin: 1.5rem 0; }
.video-facade {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--dark);
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
}
.video-facade img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-facade__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 68px;
	height: 48px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
	opacity: 0.9;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.video-facade:hover .video-facade__play { opacity: 1; transform: scale(1.05); }
.video-facade__iframe { width: 100%; height: 100%; border: 0; }
.video-facade.is-loaded { cursor: default; }

.song__content { margin-bottom: 2rem; }

.optin-card--inline { margin-block: 2rem; }

.related { padding-block: 1rem 2.5rem; }
.related .container { max-width: var(--width-wide); }
