/* Site-wide modal overlay (project gallery + newsletter) */

#site-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 40px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.8);
}

#site-modal.is-open {
	display: flex;
}

.site-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	z-index: 2;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
}

.site-modal-close:hover {
	opacity: 0.8;
}

.site-modal-panel {
	max-width: 100%;
	max-height: 100%;
	overflow: auto;
}

.site-modal-image {
	display: none;
	max-width: 100%;
	max-height: calc(100vh - 80px);
	width: auto;
	height: auto;
	object-fit: contain;
}

#site-modal.site-modal--image .site-modal-image {
	display: block;
}

#site-modal.site-modal--newsletter .site-modal-panel {
	background: #fff;
	padding: 24px 28px;
	max-width: 480px;
	width: 100%;
}

#site-modal.site-modal--newsletter #mc_embed_signup {
	background: #fff;
	clear: left;
	font: 14px 'Abel', Helvetica, Arial, sans-serif;
	width: 100%;
}

#site-modal.site-modal--newsletter #mc_embed_signup .mc-field-group {
	padding-bottom: 0 !important;
	margin-bottom: 12px;
}

#site-modal.site-modal--newsletter #mc_embed_signup h2 {
	margin-top: 0;
	color: #1a1a1a;
	font-size: 22px;
}

#site-modal.site-modal--newsletter #mc_embed_signup label {
	color: #1a1a1a;
}

#site-modal.site-modal--newsletter #mc_embed_signup input[type="email"],
#site-modal.site-modal--newsletter #mc_embed_signup input[type="text"] {
	width: 100%;
	box-sizing: border-box;
}

#newsletter-home {
	display: none !important;
}
