.acf-recept {
	margin: 40px 0;
}

.acf-recept__ingredients-box {
	margin-bottom: 64px;
	padding: 0 24px;
}

.acf-recept__ingredients-title-wrap {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 16px;
}

.acf-recept__ingredients-title {
	margin: 0;
	font-size: 16px !important;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #f06a6a;
	white-space: nowrap;
}

.acf-recept__ingredients-line {
	display: block;
	height: 2px;
	background: #f06a6a;
	flex: 1 1 auto;
}

/* DEFAULT INGREDIENTS (normal paragraphs) */
.acf-recept__ingredients-content {
	padding-bottom: 24px;
	border-bottom: 2px solid #f37375;
	font-size: 16px;
	line-height: 1.5;
	color: #2b2d35;
}

.acf-recept__ingredients-content p {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.5;
	color: #2b2d35;
}

.acf-recept__ingredients-content ul,
.acf-recept__ingredients-content ol {
	margin: 0 0 24px;
	padding-left: 20px;
}

.acf-recept__ingredients-content li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.5;
	color: #2b2d35;
}

.acf-recept__ingredients-content > *:last-child {
	margin-bottom: 0;
}

/* GROUPED LAYOUT (only when p + ul/ol pattern exists) */
.acf-recept__ingredients-content--grouped {
	display: flex;
	gap: 72px;
	align-items: flex-start;
	justify-content: space-between;
}

.acf-recept__ingredients-group {
	flex: 1 1 0;
}

.acf-recept__ingredients-group p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	color: #2b2d35;
}

.acf-recept__ingredients-group ul,
.acf-recept__ingredients-group ol {
	margin: 0;
	padding-left: 20px;
}

.acf-recept__ingredients-group li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.5;
	color: #2b2d35;
}

.acf-recept__ingredients-group li:last-child {
	margin-bottom: 0;
}

/* STEPS */
.acf-recept__steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.acf-recept__step {
	display: grid;
	grid-template-columns: 46px 1fr;
	column-gap: 28px;
	align-items: start;
}

.acf-recept__step-number {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #efeff2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	color: #111;
}

.acf-recept__step-text,
.acf-recept__step-text p {
	font-size: 18px;
	line-height: 1.77;
	font-weight: 400;
	color: #48484e;
}

.acf-recept__step-text p {
	margin: 0 0 18px;
}

.acf-recept__step-text p:last-child {
	margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 991px) {
	.acf-recept__ingredients-box {
		margin-bottom: 40px;
		padding: 0 !important;
	}

	.acf-recept__ingredients-title-wrap {
		gap: 16px;
		margin-bottom: 24px;
	}

	.acf-recept__ingredients-content--grouped {
		flex-direction: column;
		gap: 32px;
	}

	.acf-recept__steps {
		gap: 25px;
	}

	.acf-recept__step {
		grid-template-columns: 42px 1fr;
		column-gap: 16px;
	}

	.acf-recept__step-number {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.acf-recept__step-text,
	.acf-recept__step-text p {
		font-size: 16px;
		line-height: 1.65;
	}
}