.ingredients {
    font-size: 1em;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    margin-top: 2em;
    margin-bottom: 2em;
}

.ingredients img {
    width: 100%;
    display: block;
}

.ingredients .ingredients__title {
    font-size: 1.8em;
    font-weight: 200;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.ingredients .ingredients__title br {
    display: block;
}

.ingredients .ingredients__subtitle {
    font-weight: 500;
}

.ingredients .ingredients__row {
    margin-top: 5em;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 5em 1em;
}

.ingredients .ingredients__item {
    background-color: #F7F3EE;
    width: 100%;
    max-width: 60%;
    flex: 1 0 40%;
}

.ingredients .ingredients__content {
    font-size: .8rem;
    text-align: left;
    padding: 1em;
}

.ingredients .ingredients__list {
    list-style: none;
    margin-top: .5rem;
}

.ingredients .ingredients__list li {
    position: relative;
    margin-bottom: 8px;
}
.ingredients .ingredients__list li:last-child {
    margin-bottom: 0;
}

.ingredients .ingredients__list li:before {
    content: "";
    background-image: url('/assets-mbn/images/mark-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 7px;
}

.ingredients .ing-img {
    max-width: 150px;
    border: 5px solid #FFB800;
    border-radius: 50%;
    aspect-ratio: 1;
    box-shadow: 4px 4px 14px #0006;
    margin: -30% auto 1em;
}

.ingredients .ing-name {
    background-color: #B3A7B9;
    color: #fff;
    font-size: 1em;
    padding: 4px 2px;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .ingredients {
        font-size: 1.2em;
    }

    .ingredients .ingredients__title {
        font-size: 2em;
        line-height: 0.9;
    }

    .ingredients .ingredients__title br {
        display: none;
    }

    .ingredients .ingredients__subtitle {
        font-size: 1em;
    }

    .ingredients .ingredients__row {
        flex-direction: row;
        align-items: normal;
        row-gap: 6.5em;
        margin-top: 6em;
    }

    .ingredients .ingredients__item {
        flex: 1 0 31%;
        max-width: 31%;
        padding: 10px 15px;
    }

    .ingredients .ingredients__content {
        font-size: .875em;
        padding: 1rem 0 0 0;
    }

    .ingredients .ingredients__list {
        font-size: 1.2rem;
    }

    .ingredients .ing-img {
        max-width: 250px;
        margin: -40% auto .8em;
    }

    .ingredients .ing-name {
        /*font-size: 1em;*/
    }
}