
.recipe-cards ol {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 35px;
    margin-top: 10px;
    list-style:none !important;
}

.recipe-cards ol > li {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.recipe-cards .featured-img {
    background: #f2b114;
    border-radius: 10px;
    height: 285px;
    background-size: cover !important;
    background-position: center !important;
    transition:0.3s all;
    border:0;
}

.recipe-cards .featured-img:hover {
    filter:brightness(0.75)
}

.recipe-cards .info-wrap {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 3px 16px #0000000d;
    padding: 10px 20px;
    width: 92%;
    position: relative;
    margin-top: -110px;
    margin-left: auto;
    margin-right: auto;
    min-height:170px;
}

.recipe-cards .info-wrap h3 {
    margin-top: 10px;
    font-family: 'GothamBold';
    font-size: 17px;
    transition: 0.3s all;
    padding-bottom: 6px;
    line-height: 23px;
}

.recipe-cards .info-wrap h3:hover {
    color:#f2b114;
}

.recipe-cards .ratings i {
    color: #f2b114;
    font-size:14px;
}

.recipe-cards .recipe-meta {
	margin-bottom: 5px;
}

.recipe-cards .recipe-meta ul {
    display: flex;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.recipe-cards .recipe-meta ul li {
    align-content: center;
    display: flex;
    list-style-type: none;
    align-items: center;
    font-size:15px;
	color: #2f302f;
	font-family: 'Gotham';
}

.recipe-cards .recipe-meta ul li i {
    margin-right:7px;
}

.recipe-cards .recipe-meta ul li:nth-of-type(even) {
    margin: 0 10px;
    font-size: 26px;
}

.recipe-cards .info-wrap .recipe-meta ul li {
    font-size:11px;
}

.recipe-cards .info-wrap .recipe-meta ul li:last-of-type {
    display:none;
}

.recipe-cards .top-info, .bottom-info {
    display:flex;
    justify-content: space-between;
}

.bottom-info {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}

.recipe-cards p {
    line-height: 21px;
}

.recipe-cards .bottom-info {
    margin-top:12px;
}

.recipe-cards .social-meta {
    margin-top:10px;
    float:right;
}

.recipe-cards .social {
    color:#f2b114;
    margin-right:10px;
    transition:0.3s all;
}

.recipe-cards .social:hover {
    color:#d13926;
}

.recipe-cards .social i {
    font-size:14px;
}

.recipe-cards .bottom-info .social-meta {
    margin:0;
    align-self:center;
}

.recipe-cards .learn-btn {
    background: #f2b114;
    padding: 2px 15px;
    color: white;
    border-radius: 25px;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 12px;
    transition:0.3s;
}

.recipe-cards .learn-btn:hover {
    background:#d13926;
}


@media (max-width:1199px) {
    .recipe-cards ol {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width:980px) {
    .recipes-found {
        margin-top:20px;
    }
}

@media (max-width:767px) {
    .recipe-cards ol {
        grid-template-columns: 1fr !important;
    }
}