/**
 * site/image-text â€” legacy .membership, .for-you, .includes parity.
 */

.image-text {
	max-width: 1191px;
	margin: 49px auto;
}

.image-text--membership {
	background: #F1EDE8;
	padding: 45px 47px;
	max-width: 1186px;
	margin: 30px auto;
}

.image-text__inner {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: center;
}

.image-text--right .image-text__media {
	order: 2;
}

.image-text--right .image-text__content {
	order: 1;
}

.image-text__media {
	flex: 0 0 50.6%;
	max-height: 485px;
}

.image-text__media img {
	width: 100%;
	height: auto;
	max-height: 485px;
	display: block;
}

.image-text__content {
	width: 48%;
}

.image-text--right .image-text__content {
	text-align: left;
}

.image-text--membership .image-text__content {
	text-align: center;
	padding: 20px 0 0;
}

.image-text__text {
	font-family: 'IBM Plex Sans', -apple-system, sans-serif;
	font-size: 20px;
	line-height: 28px;
	color: #000000;
}

.image-text__text h2 {
	margin: 10px 0 30px;
}

.image-text__text h4 {
	font-family: 'IBM Plex Sans', -apple-system, sans-serif;
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0 0 16px;
}

.image-text__text p {
	padding: 0 75px;
	margin-bottom: 40px;
}

.image-text--right .image-text__text p {
	padding: 0;
	max-width: 89%;
	margin: 0 auto 45px;
}

.image-text__text p a {
	background: #000000;
	color: #fff;
	font-weight: 600;
	padding: 10px 19px 12px 22px;
	letter-spacing: 0.12rem;
	font-size: 13px;
	text-transform: uppercase;
}

.image-text__text p a:hover {
	opacity: 1;
	background: #402103;
}

@media (max-width: 768px) {
	.image-text__inner {
		flex-direction: column-reverse;
		gap: 10px;
	}
	.image-text--membership {
		max-width:90%;
		padding: 30px;
	}
	.image-text__media,
	.image-text__content {
		width: 100%;
		max-width: 100%;
		flex: none;
	}
	.image-text--right .image-text__media,
	.image-text--right .image-text__content {
		order: unset;
	}
}
@media (max-width:600px) {
	.image-text__text h3 {
		font-size:22px;
		line-height:1.3;
		margin: 10px 0 20px;
	}
	.image-text--membership .image-text__content {
		padding:0;
	}
}