/* PAGE */
.pageRecipes {
    background-color: var(--white);
    padding-bottom: 3.688rem;
    color: var(--dark-blue);
}

.pageRecipes .container-width {
    display: flex;
    flex-direction: column;
    gap: 0;

    > .block {
        margin-top: 70px;
    }
}

.pageRecipes-separator {
    height: 0.25rem;
    width: 3.125rem;
    border-radius: 0rem;
    background-color: var(--blue);
}

.pageRecipes-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 28px;

    > .pageRecipes-title {
        margin: 0;
        font-size: 2.25rem;
        line-height: 46px;
        letter-spacing: 0;
        text-align: center;
        font-family: "Mitr Bold", "sans-serif";
        font-weight: 700;
    }

    > .pageRecipes-description {
        font-weight: 700;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.3px;
        text-align: center;
    }
}

.pageRecipes-description p {
    margin: 0;
}

/* IMAGE */
.pageRecipes-top-img {
    position: relative;
}

.pageRecipes-top-img-ellipse {
    position: absolute;
    width: 150%;
    bottom: -1px;
    left: -50%;
    right: 0;
}

@media screen and (min-width: 64rem) {
    .pageRecipes {
        padding-bottom: 7.5rem;
    }

    .pageRecipes .container-width {
        > .block {
            margin-top: 75px;
        }
    }

    .pageRecipes-top-img picture {
        height: 23.75rem;
    }

    .pageRecipes-top-img-ellipse {
        width: 100%;
        left: 0;
    }
    
    .pageRecipes-header {
        margin-top: 40px;
    }
}