/*# sourceMappingURL=recipe.css.map*/

.recipe__container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 1200px;
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: #f8fbfa;
}

@media (min-width:1024px) {
	.recipe__container {
		padding-left: 180px;
		padding-right: 180px;
	}
}

.recipe__container > :not(:last-child) {
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(87, 92, 95, .1);
}

.recipe__head {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.recipe__heading {
	text-align: center;
}

.recipe__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.recipe__stat-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	line-height: 150%;
	font-weight: 500;
}

.recipe__stat-item a {
	color: inherit;
}

@media (hover:hover) {
	.recipe__stat-item a:hover {
		color: #9c2990;
	}
}

.recipe__stat-ico {
	position: relative;
	overflow: hidden;
	width: 16px;
	height: 16px;
	margin-right: 6px;
}

.recipe__stat-ico img, .recipe__stat-ico svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
	object-position: center;
}

.recipe__img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 5/3;
	width: 100%;
}

.recipe__img img, .recipe__img svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}

@supports not (aspect-ratio:5/3) {
	.recipe__img:before {
		content: "";
		display: block;
		width: 100%;
		padding-bottom: 60%;
		position: relative;
		z-index: -101;
	}
}

.recipe__grid {
	display: grid;
	grid-gap: 16px 48px;
}

@media (min-width:667px) {
	.recipe__grid {
		grid-template-columns: 3fr 2fr;
	}
}

.recipe__grid_no-border {
	border-bottom: none !important;
}

.recipe__imgs {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width:667px) {
	.recipe__imgs {
		position: sticky;
		top: calc(var(--header-height) + 48px);
	}
}

.recipe__instructions ol li {
	padding-left: 54px;
}

@media (min-width:768px) {
	.recipe__instructions ol li {
		padding-left: 72px;
	}
}

.recipe__instructions ol li:not(:last-child) {
	margin-bottom: 32px;
}

.recipe__instructions ol li:before {
	content: "0" counter(content-ol);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	font-family: EBGaramond, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 110%;
	color: #fff;
	background-color: #9c2990;
	border-radius: 50%;
}

@media (min-width:1024px) {
	.recipe__instructions ol li:before {
		font-size: 24px;
	}
}

@media (min-width:768px) {
	.recipe__instructions ol li:before {
		width: 48px;
		height: 48px;
	}
}

.recipe__wr-btns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.recipe__btn {
	width: 100%;
	min-width: 150px;
}

@media (min-width:480px) {
	.recipe__btn {
		width: auto;
	}
}
