.newsletter-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.newsletter-lightbox.is-open {
	visibility: visible;
	opacity: 1;
}

.newsletter-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	cursor: pointer;
}

.newsletter-lightbox__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	-webkit-overflow-scrolling: touch;
}

.newsletter-lightbox__close {
	position: absolute;
	top: 8px;
	right: 10px;
	z-index: 2;
	border: none;
	background: transparent;
	color: #232323;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 10px;
}

.newsletter-lightbox__close:hover {
	color: #f03c37;
}

.newsletter-lightbox__body {
	padding: 28px 24px 24px;
}

.newsletter-lightbox__body #mc_embed_signup {
	width: 100%;
	max-width: none;
}

.newsletter-lightbox-open {
	overflow: hidden;
}
