/**
 * site/for-you — Meal plans for-you section. Matches legacy .for-you design.
 * Image left, cream content box right with overlap.
 */

.for-you {
	border-top: 3px solid #f1ede8;
	max-width: 1191px;
	margin: 0 auto;
	padding: 49px 0 0;
}

.for-you__flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.for-you__image {
	width: 600px;
	height: 848px;
	object-fit: cover;
	flex-shrink: 0;
}

.for-you__content {
	background: #fcf9f5;
	padding: 41px 86px 41px 41px;
	margin: 59px 0 0 -131px;
	height: fit-content;
	position: relative;
	z-index: 1;
}

.for-you__content h2 {
	margin: -13px 0 35px;
	letter-spacing: 0;
}

.for-you__content ul {
	column-count: 2;
	column-gap: 65px;
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

.for-you__content ul::before {
	content: "";
	display: block;
	width: 3px;
	height: 100%;
	background: #e3dfda;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.for-you__content ul li {
	font-family: 'IBM Plex Sans', -apple-system, sans-serif;
	color: #000000;
	font-size: 16px;
	border-bottom: 3px solid #f1ede8;
	line-height: 23px;
	letter-spacing: 0.035rem;
	padding: 0 2px 20px 0;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 23px;
}

.for-you__content ul li:last-child {
	border-bottom: none;
}

.for-you__content ul li:nth-child(4) {
	border-bottom: none;
}

.for-you__content ul li p {
	font-family: 'IBM Plex Sans', -apple-system, sans-serif;
	color: #000000;
	font-size: 16px;
	line-height: 23px;
	letter-spacing: 0.035rem;
	margin: 0;
}

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

.for-you__content p a:hover,
.for-you__content p a:focus {
	background: #402103;
	color: #fff;
}

.for-you__content p a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	.for-you {
		max-width:90%;		
	}
	.for-you__flex {
		display: block;
	}

	.for-you__image {
		width: 470px;
		height: 539px;
		max-width: 100%;
		height: auto;
		aspect-ratio: 600 / 848;
	}

	.for-you__content {
		margin: -137px 0 30px 118px;
		width: 84%;
	}
}

@media (max-width: 767px) {
	.for-you__image {
		width: 100%;
		height: 465px;
		aspect-ratio: auto;
	}

	.for-you__content {
		margin: 0 0 30px;
		width: 100%;
		padding: 23px 0;
		background: transparent;
	}

	.for-you__content ul {
		column-count: 1;
	}

	.for-you__content ul::before {
		display: none;
	}
	.for-you__content ul li:nth-child(4){
		border-bottom:3px solid #f1ede8;
	}
}
