/* Mission Host video modal — keeps viewers on the page instead of linking out. */
.gps-video-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(3, 4, 13, 0.9);
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.gps-video-modal.is-open {
	display: flex;
}
.gps-video-modal-inner {
	position: relative;
	width: 100%;
	max-width: 960px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.gps-video-modal-inner iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.gps-video-modal-close {
	position: absolute;
	top: -44px;
	right: 0;
	background: transparent;
	border: 2px solid #c9a227;
	color: #e6e9f0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.gps-video-modal-close:hover {
	background: #c9a227;
	color: #03040d;
}
body.gps-video-modal-open {
	overflow: hidden;
}
