
.recipe {
    display: flex;
    flex-direction: row;
    width: 320px;
    /* height: 549px; */
    height:auto;
    flex-wrap: wrap;
    /* box-shadow:0px 0.875rem 2.75rem 0px hsla(230deg 100% 20% / 1%); */
    box-shadow: 0px 0.875rem 2.75rem 0px hsla(230, 100%, 20%, 0.06);
    border-radius: 1.875rem;
    position: relative;

}

.recipe.swiper-slide{
    height:auto;
    box-shadow: 0px 0.875rem 2.75rem 0px hsla(230, 100%, 20%, 0.04);
    /* width: 21.75rem; */
    overflow: hidden;
    /* border-radius: 1.25rem; */
    position: relative;
    /* box-shadow: var(--shadow); */
    background-color: var(--white);
    transition: box-shadow var(--transition-time);
    border-top-left-radius: 1.875rem;
    border-top-right-radius: 1.875rem;
}


.recipe h2 {
    color: var(--dark-blue);
    text-align: center;
}

.recipe .recipe-image picture img {
    border-top-left-radius: 1.875rem;
    border-top-right-radius: 1.875rem;
}

.recipe .recipe-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 150px;
    gap: 1.875rem;
    justify-content: center;
    padding: 1.563rem 1.25rem 1.563rem 1.25rem;
    > h3 {
        color:var(--dark-blue);
        text-align: center;
        margin: 0;
        font-size: 1.5rem;
        line-height: 32px;
        font-weight: 700;
        font-family: "Mitr Bold", "sans-serif";
    }
    > .recipe-detail {
        color:var(--dark-blue);
        font-size: 1rem;
        display: flex;
        gap: 20px;
        height: 26px;

        > span {
            display: flex;
            flex-direction: row;
            gap: 0.625rem;
            > .recipe-logo {
                width: auto;
                height: 1.25rem;
            }
        }
    }
    > .cta {
        line-height: 114.99999999999999%;
        padding: 1rem 1.25rem;
        font-weight: 600;
        font-size: 1rem;
    }
    > .cta:hover{
        border:2px solid var(--blue);
    }
}

@media screen and (min-width: 48rem) {
    .recipe {
        display: flex;
        flex-direction: column;
    }

 }
 @media screen and (min-width: 64rem) {
    .recipe {
        width: 380px;
        height: auto;
        /* max-height: 570px; */
    }
 }