.w-recipe-list-item{
	position: relative;
	z-index: 1;
}

.w-recipe-list-item__container{
	position:relative;
	display: flex;
	flex-direction: column;
	aspect-ratio: 2.5 / 4.2;
}

.w-recipe-list-item__container.has-shadow.is-new::after{
	background-color: var(--wp--preset--color--jaune-2);
	border: 1px solid var(--wp--preset--color--gris-1);
	box-sizing:border-box;
}

.w-recipe-list-item__container.has-shadow:hover::after,
.w-recipe-list-item__container.has-shadow:focus-within::after{
	transform: rotate(0);
}

.w-recipe-list-item__wrap{
	border-radius: 15px;
	border: 1px solid var(--wp--preset--color--gris-1);
	background-color: var(--couleur);
}

.w-recipe-list-item__title-link{
	text-decoration:none;
}

.w-recipe-list-item__title-link:before{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	content:'';
	display:block;
	z-index:1;
}

.w-recipe-list-item__title{
	padding:14px 30px;
	font-size:var(--wp--preset--font-size--m);
	font-weight:600;
	border-bottom:1px solid var(--wp--preset--color--gris-1);
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0;
	text-align:center;
	line-height:1;
	box-sizing:border-box;
}

.w-recipe-list-item__footer{
	display:flex;
	align-items:start;
	justify-content:space-between;
	gap:10px;
	padding:12px 16px;
	border-top:1px solid var(--wp--preset--color--gris-1);
	font-size:var(--wp--preset--font-size--xs);
	height:75px;
	box-sizing:border-box;
}

.w-recipe-list-item__footer > *{
	flex-grow:1;
	flex-basis:30%;
}

.w-recipe-list-item__footer > *:last-child{
	text-align:right;
}

.w-recipe-list-item__footer > *:nth-child(2):not(:last-child) {
	text-align: center;
}

.w-recipe-list-item__footer-item{
	display:flex;
	align-items:center;
	gap:5px;
	flex-direction: column;
}

.w-recipe-list-item__price{
	font-weight:700;
}

.w-recipe-list-item__image{
	background-color:var(--wp--preset--color--blanc);
	flex-grow:1;
	position:relative;
}

.w-recipe-list-item__image img{
	display: block;
    width: 100%;
    height: 100% !important;
    aspect-ratio: 2 / 1;
    object-position: center;
    object-fit: cover;
}

.w-recipe-list-item__button svg{
	width:33px;
	height:35px;
}

.w-recipe-list-item__button{
	position:relative;
	z-index:2;
}

.w-recipe-list-item__new__wrap{
	position:absolute !important;
	top:-22px;
	right:-12px;
	transform: rotate(-1.75deg);
	z-index:1;
}

.w-recipe-list-item__new{
	border-radius: 100px;
	border: 1px solid var(--wp--preset--color--gris-1);
	background: var(--wp--preset--color--jaune-2);
	height:30px;
	box-sizing:border-box;
	padding:0 10px;
	font-size:var(--wp--preset--font-size--xs);
	font-weight:700;
	color:var(--wp--preset--color--gris-1);
	line-height:28px;
	font-weight:600;
	font-family:var(--wp--preset--font-family--anybody);
	font-stretch: 90%;
}


.w-recipe-list-item__image img.w-recipe-list-item__image__product{
	position: absolute;
	bottom:9px;
	right:9px;
	width: 84px !important;
	height: 84px !important;
	object-fit: contain;
	background-image: url('bg-image.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}