.recipe-data-on-img {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #F6F5F6;
}

.recipe-data-alignment {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 6px;
}

.recipe-ingredients div {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-bottom: 4px;
}

.recipe-post-content div a {
    color: inherit !important;
    text-decoration: underline !important;
}

.recipe-associated-products {
    padding: 80px 0 60px 0;
    border-top: 1px solid #7B797C;
}

.recipe-h2 {
    font-size: 20px;
    font-weight: 900;
    line-height: 32px;
    text-align: left;
    color: #0D2620;
    margin: 0 0 32px 0;
}

.recipe-associated-products .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
}

.recipe-associated-products .owl-carousel .owl-nav button.owl-prev {
    visibility: visible;
    width: 40px;
    height: 40px;
    background-color: #F6F5F6;
    border-radius: 8px;
    border: 1px solid #B0AFB1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.recipe-associated-products .owl-dots {
    text-align: center;
    position: relative;
    z-index: -1;
    margin: 0;
    top: 33px;
}

/* Recipe archive page */
.recipe-category-box {
    padding-bottom: 80px;
}

.recipe-separator-border {
    border-top: 1px solid #B0AFB1;
    padding: 80px 0;
}

.recipe-category-box .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipe-category-box .title a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #22453C;
}

.recipe-category-box .title a:hover {
    color: var(--e-global-color-accent);
}

.recipe-category-box .title a svg g path {
    transition: all 0.1s ease-in-out;
}

.recipe-category-box .title a:hover svg g path {
    stroke: var(--e-global-color-accent);
    transition: all 0.2s ease-in-out;
}

.recipe-category-box .recipe-category-loop {
    display: flex;
    flex-wrap: wrap;
    gap: 46px;
    list-style: none;
    padding-left: 0;
}

.recipe-category-box .recipe-category-loop .recipe-item {
    flex: 0 0 33.3333%;
    max-width: 384px;
    /*margin: 0 auto;*/
}

/* Recipe loop item */
.recipe-item img {
    max-width: 384px !important;
    height: 248px !important;
    border-radius: 4px !important;
    object-fit: cover;
}

.recipe-item h3 {
    line-height: 0 !important;
}

.recipe-item h3 a {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 32px !important;
    text-align: left !important;
    color: #0D2620 !important;
    font-family: 'MuseoSans', Sans-serif !important;
    margin: 0 0 8px 0 !important;
}

.recipe-item h3 a:hover {
    color: var(--e-global-color-accent) !important;
}

.recipe-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #7B797C;
}

.recipe-item .recipe-more-info {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
    margin: 16px 0;
}

.recipe-item .recipe-data-alignment {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #7B797C;
}

.recipe-item .recipe-data-alignment svg path {
    stroke: #7B797C;
}

.recipe-breadcrumb a:hover {
    text-decoration: underline !important;
}

/* Responsive */
@media only screen and (max-width: 1400px) {
    .recipe-elementor-loop .recipe-item img {
        width: 100% !important;
        max-width: unset !important;
    }
}

@media only screen and (max-width: 1245px) {
    .recipe-category-box .recipe-category-loop {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        grid-column-gap: var(--grid-column-gap, 30px);
        grid-row-gap: var(--grid-row-gap, 30px);
    }
    .recipe-category-box .recipe-category-loop .recipe-item{
        max-width: unset;
        height: fit-content;
    }
    .recipe-item img{
        max-width: 100% !important;
    }
}

@media only screen and (max-width: 830px) {
    .recipe-category-box {
        padding-bottom: 40px;
    }

    .recipe-separator-border {
        padding: 40px 0
    }
}

@media only screen and (max-width: 767px) {
    .recipe-data-alignment {
        color: #7B797C !important;
    }

    .recipe-data-alignment svg path {
        stroke: #7B797C;
    }

    .recipe-associated-products {
        padding: 80px 0 60px 0;
        border-top: 1px solid #7B797C;
    }

    .recipe-h2 {
        margin: 0 0 24px 0;
    }

    .recipe-item {
        margin: 0 auto;
    }

    .recipe-item img {
        max-width: unset;
        width: 100% !important;
        height: 100% !important;
    }

    .recipe-category-box .recipe-category-loop {
        grid-template-columns: repeat(1, 1fr);
    }

    .recipe-category-box .title {
        margin-bottom: 24px;
    }

    .recipe-item img {
        max-height: 200px;
    }
    .recipe-item p{
        margin: 0;
    }
}

@media only screen and (max-width: 500px) {
    .recipe-category-box .title {
        flex-direction: column;
        align-items: start;
        margin-bottom: 24px;
    }

}