/* PAGE - SINGLE RECIPE */

.pageRecipe {
    background-color: var(--white);
    padding-bottom: 3.688rem;
}

.pageRecipe .mobile-tablet-only {
    width: 100%;
}

.pageRecipe-description{
    position: relative;
}

@media screen and (min-width: 64rem) {

    .pageRecipe-description-left {
        max-width: 27.5rem;
    }

    .pageRecipe-description-right {
        max-width: 34.688rem;
    }

    .pageRecipe section {
        /* width: 100%; */
        /* max-width: 100%; */
        box-sizing: border-box;
    }
}

.pageRecipe .breadcrumbs {
    top: var(--breadcrumb-top);
}

/* HEADER */

.pageRecipe-header-img picture {
    display: block;
    height: 22.688rem;
}

.pageRecipe-header-img picture[data-banner-img-width] {
    display: flex;
}

.pageRecipe-header-img img {
    object-fit: cover;
    height: 100%;
}

@media screen and (min-width: 64rem) {

    .pageRecipe {
        padding-bottom: 7.5rem;
    }

    .pageRecipe-header-img picture {
        height: 23.75rem;
    }
}

/* PAGE */

.pageRecipe-description-left{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pageRecipe-description-right{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* INGREDIENTS */

.pageRecipe-ingredients {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    --side-padding: 1.75rem;
    display: flex;
    flex-direction: column;
    padding: 1.875rem var(--side-padding) 2.5rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
    margin-top: -1.8rem;
    box-shadow: var(--shadow);
}

.pageRecipe-ingredients .pageRecipe-title {
    text-align: center;
    margin: 1.938rem 0 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

.pageRecipe-title + .recipe-notation {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.pageRecipe-title + .recipe-notation:not(:has(.recipe-notation-text)) {
    display: none;
}

.pageRecipe-ingredients .cta {
    --color: var(--blue);
    --backgroundColor: var(--white);
    transition: background-color var(--transition-time), border-color var(--transition-time), color var(--transition-time);
}

.pageRecipe-rating {
    display: none;
}

.pageRecipe-rating.is-visible {
    display: block;
}

.pageRecipe-ingredients .cta:hover,
.pageRecipe-rating .cta:hover {
    --color: var(--white);
}

.mobile-tablet-only .pageRecipe-rating .recipe-send-rating:hover {
    --color: var(--blue);
}

.pageRecipe-title-h2{
    font-size: var(--h3-size);
    line-height: var(--h3-line-height);
    text-align: center;
    margin-bottom: 0.5rem;
}

/* DURATION */
.pageRecipe-duration-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.pageRecipe-duration-wrapper + .pageRecipe-duration-wrapper {
    margin-top: 1rem;
}

.pageRecipe-duration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.375rem 0 1rem;
    border-radius: var(--radius);
    background-color: var(--white);
    position: relative;
    line-height: 1.875rem;
    margin: 0;
}

.pageRecipe-duration .duration-clock,
.pageRecipe-duration .duration-heat,
.pageRecipe-duration .duration-knife {
    --clock-box-height: 1.125rem;
    display: inline-block;
    width: var(--clock-box-height);
    height: var(--clock-box-height);
    background-image: var(--clock-background);
    background-size: var(--clock-box-height);
    background-position: center;
    background-repeat: no-repeat;
}

.pageRecipe-duration .duration-heat {
    background-image: var(--heat-background);
}

.pageRecipe-duration .duration-knife {
    background-image: var(--knife-background);
}

.pageRecipe-duration .duration-time {
    display: inline-block;
    margin: 0;
    margin-left: .5rem;
    color: var(--blue);
    font-family: "Open Sans", sans-serif;
    font-weight: 900;
    font-size: 1rem;
}

.pageRecipe-ingredients-global{
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.67rem;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    gap: 0.313rem;
}

.pageRecipe-ingredients-people{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:0.625rem;
}

.pageRecipe-ingredients-people div{
    cursor: pointer;
}

.pageRecipe-ingredients-people span{
    --width: 1.875rem;
    width: var(--width);
    height: var(--width);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--width) / 2);
    text-align: center;
    font-size: 2rem;
    cursor: pointer;
}

.pageRecipe-numberPeople{
    margin: 0;
    font-size: var(--p-s-size);
}

.pageRecipe-ingredients-title{
    font-size: 1.125rem;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.pageRecipe-ingredientsList {
    margin-top: 1.6rem;
    margin-left: .313rem;
}

.ingredients-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    display: flex;
    align-items: center;
}

.ingredients-list li + li {
    margin-top: 0.63rem;
}

.ingredients-list input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin: 0;
    border: 0.125rem solid var(--white);
    border-radius: 0.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--blue);
    cursor: pointer;
    position: relative;
}

.ingredients-list input[type="checkbox"]:checked {
    background-color: var(--blue);
    border: 0.188rem solid var(--white);
}

.ingredients-list input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: .05rem;
    left: .25rem;
    width: 0.24rem;
    height: 0.525rem;
    border: solid var(--white);
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
}

.ingredients-list input[type="checkbox"]:checked + label {
    color: var(--gray);
}

.ingredients-list label {
    font-size: var(--p-s-size);
    color: var(--white);
    margin-left: 0.688rem;
    cursor: pointer;
}

.pageRecipe-cta-global{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.438rem;
    margin-top: 2.063rem;
}

.pageRecipe-cta {
    cursor: pointer;
    display: inline-block;
    background-color: var(--white);
    color: var(--blue);
    align-self: center;
    font-size: 0.9rem;
    border:none;
    font-family: 'Montserrat', sans-serif;
    line-height: 2.5rem;
}

/* STEPS */

.pageRecipe-steps{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    --side-padding: 1.5rem;
    display: flex;
    flex-direction: column;
    padding: 2.5em var(--side-padding) 1.813rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
    margin-top: 2.625rem;
    box-shadow: var(--shadow);
}

.pageRecipe-steps .pageRecipe-title {
    font-size: 8.14vw; /* 32px */
    font-weight: 700;
    line-height: 9.16vw; /* 36px */
    color: var(--white);
    text-align: center;
    margin-bottom: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-top: 1.5rem;
    
}

.pageRecipe-step-number{
    --width: 2.5rem;
    width: var(--width);
    height: var(--width);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--width) / 2);
    background-color: var(--white);
    text-align: center;
    font-size: 1.563rem;
    color: var(--blue);
    font-family: 'Brygada 1918', serif;
    font-weight: bold;
}

.pageRecipe-step div {
    margin-top: 0.875rem;
}

.pageRecipe-step iframe{
    max-width: 98%;
}

.pageRecipe-step a {
    color: var(--white);
    text-decoration: underline;
}

.pageRecipe-step iframe {
    max-width: 100%;
    border-radius: var(--radius);
}

.pageRecipe-steps-text{
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    line-height: 1.25rem;
    text-align: center;
}

.pageRecipe-stepsList {
    margin-top: 0.7rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    margin-top: 1.4rem;
    padding: 0;
    list-style-type: none;
    align-items: center;
    text-align: center;
}

.steps-list li {
    text-align: center;
}

.pageRecipe-step + li {
    margin-top: 1.688rem;
}

.steps-list p {
    font-size: 1.125rem;
    line-height: 1.25rem;
}

/* MINISSIMO */

.pageRecipe-step-miamissimo{
    display: inline-block;
    padding: 1.875rem 1.25rem;
    background-color: var(--white);
    color: var(--blue);
    border-radius: var(--radius);
}

.pageRecipe-step-miamissimo div {
    margin-top: 1.125rem;
}

.pageRecipe-step-miamissimo p {
    font-size: 1rem;
    color: var(--blue);
    line-height: 1.25rem;
}

.pageRecipe-step p:last-child,
.pageRecipe-step-miamissimo p:last-child {
    margin-bottom: 0;
}

.pageRecipe-minissimo-global {
    position: absolute;
    right: .75rem;
    top: 1.313rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.375rem 0 0.188rem;
    border-radius: var(--radius);
    background-color: var(--blue);
}

.pageRecipe-minissimo-icon {
    display: inline-block;
    width: var(--minissimo-box-width);
    height: var(--minissimo-box-height);
    background-image: var(--minissimo-background);
    background-size: var(--minissimo-background-size);
    background-position: center;
    background-repeat: no-repeat;
}

.pageRecipe-step-miamissimo + li {
    margin-top: 1.25rem;
}

/* END MINISSIMO */

/* PRODUCT */

.pageRecipe-product{
    margin-top: 2.625rem;
    display: flex;
    flex-direction: column;
    --side-padding: .7rem;
    padding: 1.813rem var(--side-padding) 2.563rem;
}

.pageRecipe-product-title-global {
    margin-top: 0.5rem;
    --side-padding: 1.5rem;
    padding: 0 var(--side-padding) 1.813rem;
}

.blueVersion-text{
    color: var(--blue);
}

.whiteVersion-text{
    color: var(--white);
}

.pageRecipe-product-text{
    font-size: 1.125rem;
    margin: 1rem 0 0;
    padding: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25rem;
}

.pageRecipe-product img {
    max-height: 13.125rem;
    width: auto;
    margin: 1.75rem auto 0;
        object-fit: contain;
}

.pageRecipe-product h2:not(:first-child) {
    margin: 1.7rem 0 1.7rem;
}

.pageRecipe-product iframe {
    width: calc(100% + (var(--side-padding) + var(--min-external-margin)) * 2);
    height: calc(100vw * 266 / 377);
    transform: translateX(calc((var(--side-padding) + var(--min-external-margin)) * -1));
}

/* REDUCTION */

.pageRecipe-reduction {
    display: flex;
    position:relative;
    flex-direction: column;
    padding: 1.813rem 0;
    background-color: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    margin-top: 2.625rem;
    box-shadow: var(--shadow);
}

.pageRecipe-reduction img {
    width: calc(100% + 2rem);
    transform: translateX(-1rem);
}

.pageRecipe-reduction-text {
    margin-bottom: 0;
    padding: 0 2.75rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    line-height: 1.25rem;
}

.pageRecipe-reduction-cta {
    line-height: 1.875rem;
    margin-top: 1rem;
}

/* VARIANTS */

.pageRecipe-variants {
    --contentTopPadding: 0;
    margin-top: 2rem;
    padding-top: 1.3rem;
    box-sizing: border-box;
    background-color: var(--white);
    color: var(--blue);
}

.pageRecipe-variants h2 {
    margin-left: 2.438rem;
    margin-right: 1.938rem;
    margin-bottom: 1.875rem;
    text-align: left;
}

.pageRecipe-variants h2:after {
    background-image: var(--dropdown-arrow-background-blue);
    right: 0;
    background-size: 1.250rem 1.250rem;
    width: 1.250rem;
    height: 1.250rem;
}

.pageRecipe-variants-detail{
    text-align: center;
    margin-top: 0;
    padding: 0 1rem;
}

.pageRecipe-variants-detail ul{
    padding-left: 0;
}

.pageRecipe-variants-detail a{
    text-decoration: underline;
}

.pageRecipe-variants p{
    margin-bottom:0;
}

.pageRecipe-variants ul{
    list-style-type: none;
}

.pageRecipe-variants-detail > div + div {
  margin-top: 30px;
}

.pageRecipe-variants-detail .accordion-content-inner > div + div {
  margin-top: 30px;
}

/* 768px */
@media screen and (min-width: 48rem) {
    
}

/* 1024px */
@media screen and (min-width: 64rem) {

    .pageRecipe-description{
        display:grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
    }

    /* PAGE */

    .pageRecipe-description-left{
        box-sizing: border-box;
        display: inline;
        align-items: none;
        justify-content: none;
        flex-direction: none;
    }

    .pageRecipe-description-right{
        box-sizing: border-box;
        display: inline;
        align-items: none;
        justify-content: none;
        flex-direction: none;
    }

    /* INGREDIENTS */

    .pageRecipe-ingredients{
        --side-padding: 2.5rem;
        margin-top: -4.375rem;
        padding: 1.938rem var(--side-padding) 0.7rem;
        margin-bottom: 0;
    }

    .pageRecipe-duration .duration-time{
        font-size: 1rem;
    }

    .pageRecipe-ingredients-global{
        margin-top: 2.4rem;
        padding-right: 1.4rem;
        padding-left: 1.4rem;
    }

    .pageRecipe-ingredientsList{
        margin-top: 1.95rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pageRecipe-ingredients .pageRecipe-title{
        margin-top: 2.3rem;
        padding: 0;
        font-size: 2.6rem;
    }

    .pageRecipe-ingredients-title{
        font-family: "Brygada 1918", serif;
        font-size: 1.375rem;
        font-weight: 500;
    }

    .pageRecipe-ingredients-people p{
        font-size:1rem;
    }

    .ingredients-list label{
        font-size: 1rem;
    }

    .pageRecipe-cta-global {
        gap: .6rem;
    }

    .pageRecipe-cta{
        font-size: 1rem;
    }
    
    /* STEPS */

    .pageRecipe-steps{
        --side-padding: 5.875rem;
        margin-top:1.875rem;
        padding-top: 2.75rem;
        padding-bottom: 2.65rem;
    }

    .pageRecipe-steps-text,
    .steps-list p,
    .pageRecipe-step-miamissimo p{
        line-height: 1.5rem;
    }

    .pageRecipe-title-h2{
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        margin-top: 0.4rem;
        margin-bottom:0;
        font-size: var(--h3-size);
        line-height: var(--h3-line-height);
    }

    .pageRecipe-steps-text {
        margin-top: 1.5rem;
    }

    .pageRecipe-steps-text,
    .steps-list p {
        font-size: 1.25rem;
        line-height: 1.375rem;
    }

    .pageRecipe-step-miamissimo {
        margin-top: 2.15rem;
        padding: 1.75rem 1.75rem 2.55rem;
    }

    .pageRecipe-step-miamissimo + li {
        margin-top: 1.55rem;
    }

    .pageRecipe-step-miamissimo div {
        margin-top: 1.25rem;
    }

    .pageRecipe-step-miamissimo p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .pageRecipe-stepsList{
        padding-top: 0;
    }

    .steps-list{
        margin-top: 1.55rem;
        padding-top: 0;
    }

    /* PRODUCT */

    .pageRecipe-product {
        padding-top: 2.613rem;
        padding-bottom: 3.063rem;
    }

    .pageRecipe-product-text{
        margin-top: 1.8rem;
        font-size: 1.25rem;
        line-height: 1.375rem;
        /* padding: 0 3.75rem; */
        padding: 0 5.5rem;
    }

    .pageRecipe-product-container {
        margin-top: 3rem;
    }

    .pageRecipe-product img {
        max-height: 17.625rem;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2.5rem;
    }

    .pageRecipe-product h2:not(:first-child) {
        margin: 3rem 0 2.125rem;
        /* padding-left: 5rem;
        padding-right: 5rem; */
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .pageRecipe-product-content{
        --side-padding: 4.5rem;
    }

    .pageRecipe-product-video{
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .pageRecipe-product-title-global{
        --side-padding: 4.5rem;
        padding: 0 var(--side-padding) 1.813rem;
    }

    .pageRecipe-product iframe {
        width: calc(100% + var(--side-padding) * 2);
        height: 20.625rem;
        transform: translateX(calc(var(--side-padding) * -1));
    }

    /* REDUCTION */

    .pageRecipe-reduction {
        margin-top: 1.9rem;
        padding-top: 2.125rem;
        padding-bottom: 1.9rem;
    }

    .pageRecipe-reduction img {
        margin-top: 1.2rem;
    }

    .pageRecipe-reduction img .full-width-image {
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -20vw;
        margin-right: -15vw;
        width: 40vw;
        max-width: 40vw;
    }

    .pageRecipe-reduction-text {
        margin-top: 1.75rem;
        padding: 0 1.75rem;
        font-size: 1.125rem;
        line-height: 1.25rem;
    }

    .pageRecipe-reduction-cta {
        line-height: 2.5rem;
        margin-top: 1.65rem;
    }

    /* VARIANTS */

    .pageRecipe-variants {
        margin-top:3rem;
        --side-padding: 1.5rem;
        padding: 2.5rem var(--side-padding) 3.6rem;
        font-size: 1.125rem;;
    }

    .pageRecipe-variants h2 {
        text-align: center;
        cursor: default;
    }

    .pageRecipe-variants-detail p + p {
        margin-top: 1.25rem;
    }

    .pageRecipe-variants .accordion-title:after{
        background-image: none;
        display: none;
    }
}

/* HISTORY */

.pageRecipe-history {
    background-color: var(--blue);
    color: var(--white);
    margin-top: 1.75rem;
    padding: 1.875rem 2rem 1.313rem;
    text-align: center;
}

.pageRecipe-history a {
    text-decoration: underline;
}

.pageRecipe-history p:first-child {
    margin-top: 1.5rem;
}

/* 1024px */
@media screen and (min-width: 64rem) {

    .pageRecipe-history {
        margin-top: 2.5rem;
        padding: 3.125rem 3.6rem 2.8rem;
        background-color: var(--white);
        color: var(--blue);
    }

    .pageRecipe-history svg {
        width: 5.938rem;
        height: 5.625rem;
    }

    .pageRecipe-history path {
        fill: var(--blue);
    }

    .pageRecipe-history p {
        margin: 1.25rem 0;
        font-size: 1.125rem;
        font-family: "Open Sans", sans-serif;
    }

    .pageRecipe-history p:last-child {
        margin-bottom: 0;
    }
}

/* RATING */
.pageRecipe-rating {
    --star-notation-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='28' viewBox='0 0 29 28' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M15.4511 6.69098L14.5 3.76393L13.5489 6.69098L11.8651 11.8734L6.41602 11.8734H3.33834L5.82823 13.6824L10.2366 16.8853L8.55277 22.0676L7.60171 24.9947L10.0916 23.1857L14.5 19.9828L18.9084 23.1857L21.3983 24.9947L20.4472 22.0676L18.7634 16.8853L23.1718 13.6824L25.6617 11.8734H22.584L17.1349 11.8734L15.4511 6.69098Z' stroke='%23214C9F' stroke-width='2'/%3E%3C/svg%3E");
    --star-notation-filled-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='28' viewBox='0 0 29 28' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M15.4511 6.69098L14.5 3.76393L13.5489 6.69098L11.8651 11.8734L6.41602 11.8734H3.33834L5.82823 13.6824L10.2366 16.8853L8.55277 22.0676L7.60171 24.9947L10.0916 23.1857L14.5 19.9828L18.9084 23.1857L21.3983 24.9947L20.4472 22.0676L18.7634 16.8853L23.1718 13.6824L25.6617 11.8734H22.584L17.1349 11.8734L15.4511 6.69098Z' fill='%23214C9F' stroke='%23214C9F' stroke-width='2'/%3E%3C/svg%3E");
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
    padding: 1.4rem 2rem 1.563rem;
    text-align: center;
}

.pageRecipe-rating h2 {
    margin-bottom: 1.5rem;
}

.pageRecipe-rating p {
    margin: 0 0 .45rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.pageRecipe-rating .recipe-notation-star {
    width: 2rem;
    height: 2rem;
    padding: 0.125rem;
    background-size: 1.75rem 1.75rem;
}

.pageRecipe-rating .cta {
    margin-top: 1.3rem;
    font-size: 0.938rem;
    line-height: 2.5rem;
    background-color: var(--blue);
    color: var(--white);
}

/* 1024px */
@media screen and (min-width: 64rem) {
    
    .pageRecipe-rating {
        --star-notation-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='28' viewBox='0 0 29 28' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M15.4511 6.69098L14.5 3.76393L13.5489 6.69098L11.8651 11.8734L6.41602 11.8734H3.33834L5.82823 13.6824L10.2366 16.8853L8.55277 22.0676L7.60171 24.9947L10.0916 23.1857L14.5 19.9828L18.9084 23.1857L21.3983 24.9947L20.4472 22.0676L18.7634 16.8853L23.1718 13.6824L25.6617 11.8734H22.584L17.1349 11.8734L15.4511 6.69098Z' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");
        --star-notation-filled-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='28' viewBox='0 0 29 28' fill='none'%3E%3Cpath xmlns='http://www.w3.org/2000/svg' d='M15.4511 6.69098L14.5 3.76393L13.5489 6.69098L11.8651 11.8734L6.41602 11.8734H3.33834L5.82823 13.6824L10.2366 16.8853L8.55277 22.0676L7.60171 24.9947L10.0916 23.1857L14.5 19.9828L18.9084 23.1857L21.3983 24.9947L20.4472 22.0676L18.7634 16.8853L23.1718 13.6824L25.6617 11.8734H22.584L17.1349 11.8734L15.4511 6.69098Z' fill='%23FFFFFF' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");

        margin-top: 2.5rem;
        padding-top: 0.5rem;
        padding-bottom: 2.3rem;
        background-color: var(--blue);
        color: var(--white);
    }

    .pageRecipe-rating h2 {
        font-size: var(--h3-size);
        font-size: var(--h3-line-height);
        margin-bottom: 1rem;
    }

    .pageRecipe-rating p {
        font-size: 1.125rem;
    }

    .pageRecipe-rating .cta {
        margin-top: 1.6rem;
        background-color: var(--white);
        color: var(--blue);
    }
}

/* SHARING */
.pageRecipe-share {
    max-width: 21.063rem;
    margin: 2rem auto 0;
}

.pageRecipe-share h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: var(--h3-size);
    line-height: var(--h3-line-height);
}

/* 1024px */
@media screen and (min-width: 64rem) {

    .pageRecipe-share {
        margin: 5.625rem auto 0;
    }
}

/* RELATED RECIPES */
section.pageRecipe-related {
    margin-top: 3.438rem;
    margin-bottom: 0;
}

.pageRecipe-related-picture {
    display: block;
    width: 100vw;
    height: 69vw;
}

.pageRecipe-related-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageRecipe .pageRecipe-related .overlappingBoxes-upper {
    position: static;
    margin-top: -2.55rem;
}

.pageRecipe-related h2 {
    margin-bottom: 2.45rem;
}

.pageRecipe-related .card h3 {
    margin-top: 0.875rem;
    margin-bottom: 0.5rem;
    font-size: var(--p-l-size);
    line-height: 1.188rem;
}

.pageRecipe-related .recipe-notation-star {
    background-image: var(--blue-star-notation-background);
}

.pageRecipe-related .recipe-notation-star.filled {
    background-image: var(--blue-star-notation-filled-background);
}

@media screen and (min-width: 64rem) {

    section.pageRecipe-related {
        margin-top: 2.563rem;
        flex-direction: column;
    }

    .pageRecipe .overlappingBoxes {
        min-height: initial;
    }

    .pageRecipe .overlappingBoxes picture {
        position: static;
        transform: none;
        height: auto;
    }

    .pageRecipe .pageRecipe-related-picture {
        width: 100%;
        height: initial;
        border-radius: var(--radius);
        overflow: hidden;
    }

    .pageRecipe .pageRecipe-related .overlappingBoxes-upper {
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        box-sizing: border-box;
        padding-top: 0;
        margin-top: 0;
        transform: none;
    }

    .pageRecipe .pageRecipe-related h2 {
        margin-top: 2.875rem;
        margin-bottom: 2.4rem;
        font-size: var(--h3-size);
        line-height: var(--h3-line-height);
    }

    .pageRecipe .recipe-notation {
        margin-bottom: 0;
    }

    .pageRecipe-related .card h3 {
        margin-top: 1.4rem;
        margin-bottom: 0.65rem;
        font-size: var(--h3-s-size);
    }

    .pageRecipe-related .recipe-notation-star {
        background-image: var(--star-notation-background);
    }

    .pageRecipe-related .card .cta {
        margin-bottom: 1.5rem;
    }

    .pageRecipe-related .recipe-notation {
        margin-bottom: 2.188rem;
    }
    
    .pageRecipe-related .recipe-notation-star.filled {
        background-image: var(--star-notation-filled-background);
    }
    
    .pageRecipe .overlappingBoxes-upper > * {
        color: var(--blue);
    }

    .pageRecipe-related .recipe .recipe-footer .cta:hover {
        --color: var(--white);
    }
}