.zutat-dp-recipe-visual {
	display: block;
	text-decoration: none;
}

.zutat-product-guide {
	grid-column: 1 / -1;
	margin: 35px 0 20px;
	padding: 50px;
	border-radius: 32px;
	background: var(--z-rice);
}

.zutat-product-guide-heading {
	max-width: 720px;
}

.zutat-product-guide-heading .zutat-kicker {
	margin: 0 0 10px !important;
}

.zutat-product-guide-heading h2 {
	margin: 0;
	color: #111;
	font-size: clamp(30px, 3.5vw, 48px);
	font-weight: 900;
	letter-spacing: -.045em;
}

.zutat-product-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.zutat-product-guide-grid article {
	min-height: 210px;
	padding: 28px;
	border: 1px solid var(--z-border);
	border-radius: 24px;
	background: #fff;
}

.zutat-product-guide-grid article > b {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: rgba(215, 38, 30, .09);
	color: var(--z-red);
	line-height: 0;
}

.zutat-product-guide-grid h3 {
	margin: 24px 0 0;
	color: #111;
	font-size: 18px;
	font-weight: 900;
}

.zutat-product-guide-grid p {
	margin: 12px 0 0;
	color: #111;
	font-size: 13px;
	line-height: 1.7;
}

@media (max-width: 900px) {
	.zutat-product-guide-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.zutat-product-guide {
		margin-top: 20px;
		padding: 28px 20px;
		border-radius: 24px;
	}

	.zutat-product-guide-grid article {
		min-height: 0;
		padding: 23px;
	}
}

/* Single recipe and article templates. */
.zutat-recipe-single,
.zutat-article-single {
	color: #111;
	background: #fff;
}

.zutat-recipe-single-hero {
	padding: clamp(46px, 6vw, 82px) 24px;
	background: var(--z-rice);
}

.zutat-recipe-single-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(42px, 7vw, 90px);
	max-width: 1200px;
	margin: auto;
}

.zutat-recipe-back {
	display: inline-flex;
	margin-bottom: 42px;
	color: #555;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.zutat-recipe-single-intro .zutat-kicker {
	margin: 0 0 12px;
}

.zutat-recipe-single-intro h1,
.zutat-article-single h1 {
	margin: 0;
	color: #0d0d0d;
	font-size: clamp(48px, 6vw, 76px);
	font-weight: 900;
	line-height: .94;
	letter-spacing: -.062em;
}

.zutat-recipe-single-intro > p:not(.zutat-kicker) {
	max-width: 570px;
	margin: 24px 0 0;
	color: #333;
	font-size: 15px;
	line-height: 1.9;
}

.zutat-recipe-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 27px;
}

.zutat-recipe-badges span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	border-radius: 999px;
	background: #fff;
	font-size: 11px;
	font-weight: 800;
}

.zutat-recipe-badges svg { color: var(--z-red); }

.zutat-recipe-cover {
	position: relative;
	display: grid;
	aspect-ratio: 1.12;
	place-items: center;
	overflow: hidden;
	border: 20px solid var(--z-red);
	border-radius: 42px;
	background: #fff8f1;
}

.zutat-recipe-cover > img:first-child {
	width: 86%;
	height: 86%;
	object-fit: contain;
	filter: drop-shadow(0 28px 25px rgba(70, 0, 0, .18));
}

.zutat-recipe-cover .zutat-recipe-cover-mark {
	position: absolute;
	top: 15px;
	right: 17px;
	width: 36px;
	height: 36px;
}

.zutat-recipe-builder {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	align-items: start;
	gap: clamp(38px, 6vw, 72px);
	max-width: 1200px;
	margin: auto;
	padding: clamp(64px, 8vw, 100px) 24px;
}

.zutat-recipe-people {
	position: sticky;
	top: 110px;
	padding: 31px;
	border-radius: 30px;
	color: #fff;
	background: #111;
}

.zutat-recipe-people > p {
	margin: 0;
	color: #ef6d66;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .13em;
}

.zutat-recipe-people h2 {
	margin: 12px 0 0;
	color: #fff;
	font-size: 24px;
	font-weight: 900;
}

.zutat-recipe-people > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 54px;
	margin-top: 24px;
	padding: 0 8px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
}

.zutat-recipe-people button {
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: transparent;
	font-size: 21px;
}

.zutat-recipe-people button:hover { background: rgba(255, 255, 255, .1); }
.zutat-recipe-people strong { color: #fff; font-size: 18px; }
.zutat-recipe-people small { display: block; margin-top: 16px; color: #aaa; font-size: 11px; line-height: 1.8; }

.zutat-recipe-main > .zutat-kicker { margin: 0 0 10px; }
.zutat-recipe-main > h2 {
	max-width: 720px;
	margin: 0;
	color: #0d0d0d;
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 900;
	line-height: .98;
	letter-spacing: -.05em;
}

.zutat-recipe-ingredients {
	display: grid;
	gap: 13px;
	margin-top: 34px;
}

.zutat-recipe-ingredients article a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 13px;
	border: 1px solid var(--z-border);
	border-radius: 18px;
	color: #111;
	background: #fff;
	text-decoration: none;
	transition: border-color .2s, transform .2s;
}

.zutat-recipe-ingredients article a:hover { border-color: rgba(215, 38, 30, .45); transform: translateY(-2px); }
.zutat-recipe-ingredients article a > span { display: grid; width: 70px; height: 70px; flex: 0 0 70px; place-items: center; border-radius: 13px; background: var(--z-rice); }
.zutat-recipe-ingredients img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.zutat-recipe-ingredients article div { flex: 1; min-width: 0; }
.zutat-recipe-ingredients h3 { margin: 0; color: #111; font-size: 14px; font-weight: 900; }
.zutat-recipe-ingredients p { margin: 6px 0 0; color: #555; font-size: 11px; }
.zutat-recipe-ingredients p b { color: #555; font-weight: 500; }
.zutat-recipe-ingredients article a > svg { flex: 0 0 auto; color: var(--z-red); }

.zutat-recipe-basket {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
	padding: 20px;
	border-radius: 18px;
	background: var(--z-rice);
}

.zutat-recipe-basket p { margin: 0; color: var(--z-red); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.zutat-recipe-basket strong { display: inline-block; margin-top: 5px; color: #111; font-size: 18px; font-weight: 900; }
.zutat-recipe-basket small { margin-left: 6px; color: #666; font-size: 10px; }
.zutat-recipe-basket button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border: 0; border-radius: 999px; color: #fff; background: var(--z-red); font-size: 12px; font-weight: 900; }
.zutat-recipe-basket button:hover { background: #bd1d17; }
.zutat-recipe-basket button:disabled { opacity: .7; }

.zutat-recipe-steps { margin-top: 58px; }
.zutat-recipe-steps > .zutat-kicker { margin: 0 0 22px; }
.zutat-recipe-steps article { display: grid; grid-template-columns: 50px 1fr; gap: 17px; margin-top: 13px; padding: 20px; border: 1px solid var(--z-border); border-radius: 18px; background: #fff; }
.zutat-recipe-steps article > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: #111; font-size: 11px; font-weight: 900; }
.zutat-recipe-steps h3 { margin: 1px 0 0; color: #111; font-size: 16px; font-weight: 900; }
.zutat-recipe-steps p { margin: 7px 0 0; color: #444; font-size: 13px; line-height: 1.75; }
.zutat-recipe-longform { padding: 10px 24px 95px; background: #fff; }
.zutat-recipe-longform .zutat-article-content { margin-top: 0; }

.zutat-article-single { padding-bottom: 90px; }
.zutat-article-single > header { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: clamp(52px, 7vw, 90px) max(24px, calc((100vw - 1200px) / 2)); background: var(--z-rice); }
.zutat-article-single > header .zutat-kicker { margin: 0 0 12px; }
.zutat-article-single > header figure { aspect-ratio: 1.2; margin: 0; overflow: hidden; border-radius: 34px; }
.zutat-article-single > header figure img { width: 100%; height: 100%; object-fit: cover; }
.zutat-article-excerpt { max-width: 650px; margin: 22px 0 0; color: #333; font-size: 15px; line-height: 1.75; }
.zutat-article-meta { display: flex; gap: 20px; margin-top: 25px; color: #444; font-size: 12px; font-weight: 700; }
.zutat-article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.zutat-article-content { max-width: 820px; margin: 64px auto 0; padding: 0 24px; color: #111; font-size: 16px; line-height: 1.85; }
.zutat-article-content h2, .zutat-article-content h3, .zutat-article-content h4 { color: #111; font-weight: 900; }
.zutat-article-content h2 { margin: 48px 0 15px; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -.035em; }
.zutat-article-content h3 { margin: 34px 0 12px; font-size: 23px; }
.zutat-article-content p, .zutat-article-content li { color: #222; }
.zutat-article-content ul, .zutat-article-content ol { margin: 18px 0 28px; padding-left: 24px; }
.zutat-article-content li + li { margin-top: 9px; }
.zutat-article-lead { margin: 0 0 35px; font-size: 20px; line-height: 1.75; }
.zutat-article-callout, .zutat-article-tip, .zutat-article-shop { margin: 32px 0; padding: 28px; border-radius: 22px; background: var(--z-rice); }
.zutat-article-callout > strong, .zutat-article-tip > strong { color: #111; font-size: 17px; font-weight: 900; }
.zutat-article-callout ul { margin-bottom: 0; columns: 2; column-gap: 40px; }
.zutat-article-tip { border-left: 5px solid var(--z-red); }
.zutat-article-shop { color: #fff !important; background: #111; font-weight: 700; }
.zutat-article-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 55px; padding: 32px; border-radius: 24px; background: var(--z-rice); }
.zutat-article-cta .zutat-kicker { margin: 0 0 7px; }
.zutat-article-cta h2 { max-width: 520px; margin: 0; font-size: 26px; }
.zutat-article-cta .zutat-button { flex: 0 0 auto; color: #fff; }
.zutat-article-table { margin: 30px 0; overflow-x: auto; border: 1px solid var(--z-border); border-radius: 20px; }
.zutat-article-table table { width: 100%; min-width: 560px; border-collapse: collapse; }
.zutat-article-table th, .zutat-article-table td { padding: 17px; border-bottom: 1px solid var(--z-border); color: #111; text-align: left; }
.zutat-article-table th { background: var(--z-rice); font-size: 13px; font-weight: 900; }
.zutat-article-table tr:last-child td { border-bottom: 0; }
.zutat-measure-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0 !important; list-style: none; }
.zutat-measure-list li { margin: 0 !important; padding: 16px 18px; border: 1px solid var(--z-border); border-radius: 15px; background: #fff; font-size: 13px; font-weight: 700; }
.zutat-recipe-faqs { display: grid; gap: 10px; margin-top: 22px; }
.zutat-recipe-faqs details { padding: 0 20px; border: 1px solid var(--z-border); border-radius: 17px; background: #fff; }
.zutat-recipe-faqs summary { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 18px; color: #111; cursor: pointer; font-size: 14px; font-weight: 800; list-style: none; }
.zutat-recipe-faqs summary::-webkit-details-marker { display: none; }
.zutat-recipe-faqs summary span { color: var(--z-red); font-size: 20px; }
.zutat-recipe-faqs details > p { margin: 0; padding: 0 0 20px; color: #333; font-size: 13px; }
.zutat-article-content a { color: var(--z-red); }

@media (max-width: 800px) {
	.zutat-recipe-single-hero-inner,
	.zutat-recipe-builder,
	.zutat-article-single > header { grid-template-columns: 1fr; }
	.zutat-recipe-cover { max-width: 620px; }
	.zutat-recipe-people { position: static; }
	.zutat-article-single > header { gap: 36px; }
}

@media (max-width: 520px) {
	.zutat-recipe-single-hero { padding: 38px 18px 48px; }
	.zutat-recipe-back { margin-bottom: 30px; }
	.zutat-recipe-single-intro h1, .zutat-article-single h1 { font-size: 45px; }
	.zutat-recipe-cover { border-width: 13px; border-radius: 30px; }
	.zutat-recipe-builder { padding: 52px 18px 70px; }
	.zutat-recipe-people { padding: 25px 21px; }
	.zutat-recipe-main > h2 { font-size: 36px; }
	.zutat-recipe-basket { align-items: stretch; flex-direction: column; }
	.zutat-recipe-basket button { width: 100%; }
	.zutat-recipe-ingredients article a > span { width: 58px; height: 58px; flex-basis: 58px; }
	.zutat-recipe-steps article { grid-template-columns: 42px 1fr; padding: 17px; }
	.zutat-recipe-steps article > span { width: 40px; height: 40px; }
	.zutat-article-single > header { padding: 45px 18px; }
	.zutat-article-content { margin-top: 45px; padding: 0 18px; }
	.zutat-article-callout ul { columns: 1; }
	.zutat-measure-list { grid-template-columns: 1fr; }
	.zutat-article-cta { align-items: stretch; flex-direction: column; padding: 25px 21px; }
	.zutat-article-cta .zutat-button { width: 100%; }
}
