/*RECIPE-TAB-PAGE*/
.category-desc.content-container {
	padding: 0!important;
	max-width: 100%!important;
}
.related-p-header {
	background: #daa520;
	width: 100%;
	font-size: 1.6rem !important;
	text-align: center;
	margin-left: auto !important;
	margin-right: auto !important;
	height: auto;
	padding:0.5rem;
	font-family: Lucida Grande;
	font-style: italic;
	color: #000;
}

.recipe-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	background: #FFFFFF;
}

.recipe-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	background: #FFFFFF;
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
	box-sizing: border-box;
}

.recipe-card {
	background: #242d1f;
	display: flex;
	flex-direction: column;
	flex-basis: 23%;
	max-width: 23%;
	min-width: 170px;
	min-height: 385px;
	height: auto;
	min-height: 420px;
	padding: 1rem;
}

.recipes-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 2px solid #B38B24;
	display: block;
	position: relative;
}

.recipes-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

.related-sash {
	background: url("https://files.ekmcdn.com/fgodfrey/resources/design/michelin-chef-sticker-v1.png") no-repeat;
	z-index: 100;
	position: absolute;
	right: 0;
	bottom: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	font-size: inherit !important;
	background-size: 5vw;
	width: 5vw;
	height: 5vw;
	max-height: 5vw;
	max-width: 5vw!important;
}

.recipe-title {
	min-height: 3.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.recipe-title-link, .recipe-images-link, .recipe-product-link {
	text-decoration: none;
}

.recipe-title-link:hover .recipe-title {
	color: #F5CE50;
}

.recipe-meta {
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
	min-height: 1.6rem;
}

.recipe-description {
	color: #daa520;
	text-align: center;
	font-size: 1.4rem;
	padding: 1rem 0;
}

.recipe-products {
	margin-top: auto;
	text-align: center;
	padding-top: 1rem;
}

.recipe-product-link {
	display: inline;
	color: #fff;
	font-style: italic;
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.recipe-product-link:hover {
	color: #daa520;
}

@media (max-width: 1100px) {
  .recipe-block {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .recipe-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recipe-block {
    grid-template-columns: 1fr;
  }
}






