.sgpm {
	align-items: center;
	background: rgba(2, 8, 18, 0.78);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	overflow: auto;
	padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	position: fixed;
	transition: opacity 180ms ease-out;
	z-index: 999999;
}

.sgpm,
.sgpm * {
	box-sizing: border-box;
}

.sgpm--visible {
	opacity: 1;
}

.sgpm__modal {
	background: #ffffff;
	border: 1px solid rgba(148, 163, 184, 0.32);
	border-radius: 18px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
	color: #111827;
	display: flex;
	flex-direction: column;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	max-height: calc(100dvh - 32px);
	max-width: 680px;
	overflow: auto;
	position: relative;
	transform: translateY(10px) scale(0.985);
	transition: transform 180ms ease-out;
	width: 100%;
}

.sgpm--visible .sgpm__modal {
	transform: translateY(0) scale(1);
}

.sgpm__close {
	align-items: center;
	appearance: none;
	background: rgba(15, 23, 42, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font: 400 28px/1 Arial, sans-serif;
	height: 44px;
	justify-content: center;
	padding: 0 0 3px;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 44px;
	z-index: 2;
}

.sgpm__close:hover {
	background: #0f172a;
}

.sgpm__close:focus-visible,
.sgpm__cta:focus-visible {
	outline: 3px solid #38bdf8;
	outline-offset: 3px;
}

.sgpm__picture {
	aspect-ratio: 16 / 9;
	background: #0f172a;
	display: block;
	flex: 0 0 auto;
	overflow: hidden;
	width: 100%;
}

.sgpm__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sgpm__content {
	padding: 26px 30px 30px;
}

.sgpm__eyebrow {
	color: #dc2626;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.sgpm__title {
	color: #111827;
	font-size: clamp(25px, 4.5vw, 36px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0 0 12px;
}

.sgpm__body {
	color: #475569;
	font-size: 17px;
	line-height: 1.55;
	margin: 0 0 22px;
	white-space: pre-line;
}

.sgpm__cta {
	align-items: center;
	background: #dc2626;
	border: 2px solid #dc2626;
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.025em;
	line-height: 1.2;
	min-height: 48px;
	padding: 13px 22px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.sgpm__cta:hover {
	background: #b91c1c;
	border-color: #b91c1c;
	color: #ffffff;
}

body.sgpm-scroll-locked {
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	width: 100%;
}

@media (max-width: 767px) {
	.sgpm {
		align-items: center;
		padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
	}

	.sgpm__modal {
		border-radius: 14px;
		max-height: calc(100dvh - 24px);
	}

	.sgpm__content {
		padding: 20px 20px 22px;
	}

	.sgpm__title {
		font-size: clamp(23px, 7.3vw, 31px);
	}

	.sgpm__body {
		font-size: 16px;
		line-height: 1.45;
		margin-bottom: 18px;
	}

	.sgpm__cta {
		width: 100%;
	}
}

@media (max-height: 680px) {
	.sgpm {
		align-items: flex-start;
	}

	.sgpm__picture {
		aspect-ratio: 2.4 / 1;
	}

	.sgpm__content {
		padding-bottom: 20px;
		padding-top: 18px;
	}

	.sgpm__body {
		margin-bottom: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sgpm,
	.sgpm__modal {
		transition: none;
	}
}

