.newsletter {
	position: relative;
	background: #EBE0D9;
	margin-bottom: 50px;
	padding: 30px 40px 25px;
	border-radius: 4px;
	border-bottom: 4px solid #E4DBD6;

	display: flex;
	align-items: center;
	justify-content: space-between;
}
.newsletter__fullLink {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
}
.newsletter__content {
	padding-right: 20px;
}
.newsletter__content h2,
.newsletter__content p {
	margin: 0;
}
.newsletter__content h2 {
	font-size: 24px;
	color: #4C2D15;
	text-transform: none;
	margin-bottom: 10px;
}
.newsletter > span {
	position: relative;
	margin-left: 40px;
	color: #fff;
	text-transform: uppercase;
	background: #cc7837;
	display: inline-block;
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	padding: 9px 15px;
	border-radius: 4px;
	transition: background .6s, color .6s;
	font-family: "museo-sans",sans-serif;
}
.newsletter > span::before {
	content:'';
	position: absolute;
	top: -20px;
	bottom: -20px;
	left: -40px;
	width: 1px;
	background: #4C2D15;
	opacity: .4;
}
.newsletter:hover > span,
.newsletter:focus > span {
	background: #f9ad72;
	color: #0e0804;
}

@media (max-width: 630px) {
	.newsletter__content {
		text-align: center;
	}
	.newsletter > span::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.newsletter {
		flex-direction: column;
	}
	.newsletter__content {
		padding-right: 0;
	}
	.newsletter > span {
		margin-top: 20px;
		margin-left: 0;
	}
}



