.recipe_list_wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: repeat(2, 1fr);
	grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width : 767px) {
	.recipe_list_wrapper {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.recipe_list_wrapper .recipe_item {
	position: relative;
}

.recipe_list_wrapper .recipe_item .recipe_item_img figure {
	margin: 0;
}

.recipe_list_wrapper .recipe_item .recipe_item_post_title {
	position: absolute;
	width: 100%;
	bottom: 20px;
}

.recipe_list_wrapper .recipe_item .recipe_item_post_title h3 {
	font-size: 2rem;
	color: white;
	font-weight: 300;
	font-family: "Roboto", sans-serif;
	display: table;
	width: 100%;
	height: 81px;
	line-height: 1.1;
	font-style: normal;
	margin-bottom: 0;
}

.recipe_list_wrapper .recipe_item .recipe_item_post_title a {
	-webkit-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	background-color: #4e2613 !important;
	color: white;
	display: table-cell;
	vertical-align: middle;
}

.recipe_list_wrapper .recipe_item .recipe_item_post_title a:hover {
	background-color: rgba(242, 157, 20, 0.4) !important;
}
