#recipes {
    margin: 100px 0;
    position: relative;
}

#menu-leaf {
    position: absolute;
    z-index: -1;
    top: -180px;
    left: 0;
}

#recipes header {
    text-align: center;
}

#recipes header img {
    margin: auto;
    display: block;
}

#recipes header .story-heading-cursive {
    margin-top: 20px;
}

#recipes header .story-heading-lg {
    font-size: 2rem;
    margin-top: 30px;
}

#recipes nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

#recipes nav button {
    margin: 0 10px;
}

.recipe-tab,
.recipe-cta {
    border: none;
    width: 137px;
    height: 52px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s;
    color: #fff;
}

.active-tab,
.recipe-tab:hover {
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .1);
    color: var(--color-text-primary);
}

.article-grid {
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-image {
    width: 200px;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text {
    flex: 1;
}

.article-title {
    margin: 0 0 12px;
}

.article-desc {
    height: 64px;
    overflow: hidden;
}

.recipe-cta {
    border: solid 2px var(--color-primary);
    background-color: #fff;
    color: var(--color-primary);
    width: 100px;
    height: 40px;
    font-weight: lighter;
    font-size: 16px;
}

.recipe-cta:hover {
    color: #fff;
    background-color: var(--color-primary);
}

@media screen and (min-width: 550px) {

    .article-card {
        flex-direction: row;
    }

}

@media screen and (min-width: 1060px) {

    .article-grid {
        grid-template-columns: 1fr 1fr;
    }

}