/**
 * Vanilla Styles
 *
 * This second stylesheet is for hotfixes/vanilla CSS.
 * Do not edit the main style.css directly, rather
 * add your changes here if you are not compiling the Sass files.
 */

/* FD CLS Fix - Reserve min height for element inserted via js */
.entry-single.post .entry-header .mv_recipe_link_wrapper {
	min-height: 76px;
}

#latest_posts {
    padding:4em 0;
}
#latest_posts h2 {
    text-align:center;
}
#latest_posts .recipe_wrapper {
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
#latest_posts .latest_recipe {
    padding: 10px;
    width:calc(100% / 3 - 10px);
    margin-bottom:15px;
}
@media screen and (max-width:768px) {
    #latest_posts .latest_recipe {
        width:calc(50% - 10px);
    }
}
@media screen and (max-width:599px) {
    #latest_posts .latest_recipe {
        width:100%;
    }
}
#latest_posts .latest_recipe .inner {
    -webkit-transition: 200ms ease-in-out all;
    transition: 200ms ease-in-out all;
    background-color: #f7f7f7;
    height: 100%;
    padding-bottom: 100px;
    position: relative
}
#latest_posts .latest_recipe .inner:hover {
    box-shadow: 0 0 8px rgba(0,0,0,.5)
}
#latest_posts .latest_recipe img {
    width: 100%
}
#latest_posts .latest_recipe .text {
    padding: 28px 30px 0
}
@media screen and (max-width: 767px) {
    #latest_posts .latest_recipe .text {
        font-size:16px
    }
}
#latest_posts .latest_recipe .text .button_row {
    margin-bottom: 0;
    position: absolute;
    bottom: 15px;
    left: 13px;
    width: calc(100% - 26px)
}
#latest_posts .latest_recipe .text .button_row .button {
    display: block;
    background-color: transparent;
    font-size: 18px
}
#latest_posts .latest_recipe .text .button_row .button:hover {
    background-color: #000
}
@media screen and (max-width: 1024px) {
    #latest_posts .latest_recipe .text .button_row .button {
        font-size:16px
    }
}
#latest_posts .latest_recipe .text h3 {
    font-size: 42px;
    margin: 10px 0
}
@media(max-width: 1199px) {
    #latest_posts .latest_recipe .text h3 {
        font-size:30px
    }
}
