
/* Recipe card */
.recipe-card {
	background-color: var(--card-bg-color);
	box-shadow: var(--card-shadow);
	border-radius: var(--global-radius);
	color: var(--card-text-color);
	font-family: 'Poppins', sans-serif;
	line-height: 1.5;
	width: 22rem;
	position: relative;
	bottom: 0;
	transition: 0.09s all;
    margin: 1rem;
}

.recipe-card:hover {
	box-shadow: var(--card-shadow-hover);
	position: relative;
	bottom: 0.5rem;
	transition: 0.09s all;
	cursor: pointer;
}

.recipe-card figure {
	width: 100%;
	margin: 0;
	height: 14rem;
	overflow: hidden;
	border-radius: var(--global-radius) var(--global-radius) 0 0;
	margin-bottom: 2rem;
}

.recipe-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipe-card h1 {
	margin: 0 1.5rem 2rem 1.5rem;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -1px;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	margin: 0 1.5rem .5rem;
	font-size: 13px;
}

.dish-type {
	font-weight: 600;
	letter-spacing: -0.25px;
	color: #fff;
	margin: 0;
	background-color: var(--dish-type-color);
	padding: .25rem 1rem;
	border-radius: 100px;
}

.dish-stats {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.dish-stats li {
	opacity: .75;
	display: flex;
	align-items: center;
	margin-left: 0.75rem;
}

.dish-stats li svg {
	margin-right: .5rem;
}

.dish-stats li svg path {
	stroke: var(--card-text-color);
	stroke-opacity: .25;
}