/* Curriculum download gate modal.
   Colours match the curriculum design system already in use. */
.lv-dl-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(16, 25, 46, 0.72);
}
.lv-dl-modal.is-open { display: flex; }
body.lv-dl-modal-open { overflow: hidden; }

.lv-dl-modal-panel {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 4px;
	padding: 38px 36px 32px;
	box-shadow: 0 30px 70px rgba(16, 25, 46, 0.4);
}
.lv-dl-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: #5a7080;
	cursor: pointer;
}
.lv-dl-modal-close:hover { color: #1b2954; }

.lv-dl-modal-eyebrow {
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #5980a6;
	margin: 0 0 10px;
}
.lv-dl-modal-panel h2 {
	font-family: "Ibarra Real Nova", serif;
	color: #1b2954;
	font-size: 27px;
	line-height: 1.2;
	margin: 0 0 12px;
}
.lv-dl-modal-panel > .lv-dl-modal-intro {
	font-size: 15px;
	line-height: 1.65;
	color: #2c3a45;
	margin: 0 0 6px;
}
.lv-dl-modal-doc {
	display: block;
	font-weight: 700;
	color: #1b2954;
	margin: 0 0 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid #dde5ed;
}

@media (max-width: 600px) {
	.lv-dl-modal-panel { padding: 30px 22px 24px; }
	.lv-dl-modal-panel h2 { font-size: 23px; }
}
