.block-email {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--background);
}

.block-email__content {
	padding: 16px 24px;
}

.block-email__title {
	color: var(--wp--preset--color--quinary);
	font-family: var(--wp--custom--typography--heading--font-family);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-weight: 700;
	line-height: var(--wp--custom--line-height--tiny);
	font-size: var(--wp--preset--font-size--huge);
	margin: 0;
}

.block-email__title span {
	display: block;
	font-size: var(--wp--preset--font-size--large);
}

.block-email .wpforms-container {
	margin: 0;
}

@media only screen and (min-width: 660px) {
	.block-email {
		display: grid;
		grid-template-columns: 400px 1fr;
		align-items: center;
		position: relative;
	}

	.block-email::before {
		background: #fff;
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 24px;
		z-index: 2;
	}

	.block-email__content,
	.block-email__image {
		position: relative;
		z-index: 2;
	}
}