/* Checklist + Video — heading, intro & arrow list (left) and a click-to-play
   video over an offset accent block (right). Scoped to .b-c-video-list. */

.lake-root .b-c-video-list {
	position: relative;
	/* Let the accent block bleed toward the right edge without adding a
	   horizontal scrollbar. */
	overflow-x: clip;
}
.lake-root .b-c-video-list .vl-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
}

/* ---- left column ---- */
.lake-root .b-c-video-list .vl-heading {
	margin: 0;
	font-size: clamp(32px, 4.4vw, 52px);
	line-height: 1.05;
}
.lake-root .b-c-video-list .vl-heading em,
.lake-root .b-c-video-list .vl-heading i {
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
}
.lake-root .b-c-video-list .vl-intro {
	margin: 20px 0 0;
	max-width: 52ch;
	font-size: 16px;
	line-height: 1.7;
	color: var(--brand-body);
}
.lake-root .b-c-video-list .vl-label {
	margin: 30px 0 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--brand);
}

/* single-column arrow list */
.lake-root .b-c-video-list .vl-list {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}
.lake-root .b-c-video-list .vl-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--brand-body);
}
.lake-root .b-c-video-list .vl-list .vl-item:last-child { margin-bottom: 0; }
.lake-root .b-c-video-list .vl-arrow {
	flex: 0 0 auto;
	color: var(--brand);
}
.lake-root .b-c-video-list .vl-text { min-width: 0; }
.lake-root .b-c-video-list .vl-text > :first-child { margin-top: 0; }
.lake-root .b-c-video-list .vl-text > :last-child { margin-bottom: 0; }
.lake-root .b-c-video-list .vl-text strong,
.lake-root .b-c-video-list .vl-text b {
	color: var(--brand-ink);
	font-weight: 700;
}

/* ---- right column: video + offset accent block ---- */
.lake-root .b-c-video-list .vl-media-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 60%;
    right: -7vw;
	background: color-mix(in srgb, var(--brand) 18%, #fff);
	border-radius: var(--brand-radius, 8px) 0 0 var(--brand-radius, 8px);
}

/* The click-to-play facade (poster image + play button). */
.lake-root .b-c-video-list .lake-video {
	position: relative;
	z-index: 1;
}

@media (max-width: 860px) {
	.lake-root .b-c-video-list .vl-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.lake-root .b-c-video-list .vl-media-bg {
		left: 24px;
		right: -24px;
		top: -18px;
		bottom: -18px;
	}
}

/* ---- shared video facade (used by lake_video()) ---- */
.lake-root .lake-video {
	aspect-ratio: 16 / 9;
	background: #fff;
	padding: 8px;
	border-radius: 6px;
	box-shadow: 0 22px 48px -28px rgba(0, 0, 0, .5);
	box-sizing: border-box;
}
.lake-root .lake-video-poster {
	position: absolute;
	inset: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, oklch(0.90 0.012 250), oklch(0.82 0.016 250));
}
.lake-root .lake-video-poster img,
.lake-root .lake-video-poster .lake-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lake-root .lake-video-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	color: inherit;
}
.lake-root .lake-video-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #fff;
	color: var(--brand);
	box-shadow: 0 8px 22px -6px rgba(0, 0, 0, .4);
	transition: transform .16s ease, color .16s ease;
}
.lake-root .lake-video-btn svg { margin-left: 3px; }
.lake-root .lake-video-play:hover .lake-video-btn,
.lake-root .lake-video-play:focus-visible .lake-video-btn {
	transform: scale(1.07);
}
.lake-root .lake-video-play:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 3px;
}

/* the injected player fills the white frame */
.lake-root .lake-video iframe,
.lake-root .lake-video video {
	position: absolute;
	inset: 8px;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border: 0;
	border-radius: 3px;
	background: #000;
}
.lake-root .lake-video.is-playing .lake-video-poster,
.lake-root .lake-video.is-playing .lake-video-play {
	display: none;
}

/* ---- dark variant ---- */
.lake-root .b-c-video-list.dark .vl-intro,
.lake-root .b-c-video-list.dark .vl-item {
	color: rgba(255, 255, 255, .9);
}
.lake-root .b-c-video-list.dark .vl-label { color: #fff; }
.lake-root .b-c-video-list.dark .vl-text strong,
.lake-root .b-c-video-list.dark .vl-text b { color: #fff; }
.lake-root .b-c-video-list.dark .vl-media-bg {
	background: color-mix(in srgb, #fff 12%, transparent);
}
