.page-recipes-range--banner {
    background-color: var(--range-color);
}

.page-recipes-range--banner img {
    width: 100%;
    height: auto;
    margin:0 auto;
}

.page-recipes-range--titles {
    padding: 1.5625rem 0 0 0;
}

.page-recipes-range--title {
    color: var(--secondary);
    margin-bottom: 0;
    text-align: center;
}

.page-recipes-range--subtitle {
    color: var(--primary-600);
    line-height: 1.5rem;
}

.page-recipes-range--filters {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 1.5625rem 0;
}

.recipes-list--results {
    --gap: 1.25rem;

    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: var(--gap);
    row-gap: calc(var(--gap) * 2);

    padding: 1.25rem 0;
}

/* CARDS - V2 */

.page-recipes-range--recipes .topic-image-text__recipe-card {
    width: calc(50% - var(--gap)); /* 2 recettes par ligne avec le gap */
}

.topic-image-text__recipe-card {
    text-align: center;
}

.recipe-card--image {
    border-radius: 0.625rem; /* 10px */
}

.topic-image-text__recipe-card img {
    width: 100%;
    height: auto;
}

.topic-image-text__recipe-card--caption {
    font-size: 1.125rem; /* 18px */
    line-height: 1.1em;
    font-weight: 700;
    margin-top: 1.25rem;
}

.topic-image-text__recipe-card--secondary-caption {
    font-size: 0.875rem; /* 14px */
    line-height: 1.1em;
    font-weight: 400;
    margin-top: 1rem;
}

/* CARDS - V1 */

.page-recipes-range--recipes .recipe-card {
    width: calc(50% - var(--gap)); /* 2 recettes par ligne avec le gap */
}

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

@media screen and (min-width: 64rem) {/* 1024px */
    
    .page-recipes-range--titles {
        padding:8.125rem 0 1.125rem 0;
    }

    .recipes-list--results {
        --gap: 4.375rem;

        row-gap: var(--gap);

        padding: 6.25rem 6.68%;
    }

    /* CARDS */

    .page-recipes-range--recipes .topic-image-text__recipe-card {
        width: calc(25% - var(--gap)); /* 4 recettes par ligne avec le gap */
    }

    .topic-image-text__recipe-card--caption {
        font-size: 1.4375rem; /* 23px */
        margin-top: 1.875rem;
    }

    .topic-image-text__recipe-card--secondary-caption {
        font-size: 1.25rem; /* 20px */
    }

    /* CARDS - V1 */

    .page-recipes-range--recipes .recipe-card {
        width: calc(25% - var(--gap)); /* 4 recettes par ligne avec le gap */
    }
}