.component-title-sliding-images-texts--content__groupKeyFigures {
    --nb-cols: 1;

    display: grid;
    grid-template-columns: repeat(var(--nb-cols), 1fr);

    margin-top: 2.5rem;
}

.component-title-sliding-images-texts--topic-image-text__groupKeyFigures {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    margin-bottom: 2.5rem;
}

.component-title-sliding-images-texts--topic-image-text__groupKeyFigures--title {
    margin: 1.5rem 0 .5rem;

    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    line-height: var(--h1-line-height);
    text-transform: uppercase;
}

.component-title-sliding-images-texts--topic-image-text__groupKeyFigures--label {
    font-size: var(--p-l-size);
}

.component-title-sliding-images-texts--component-wrapper-picture-picture-image__groupKeyFigures {
    height: 4rem;
    width: auto;
}

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

    .component-title-sliding-images-texts--content__groupKeyFigures {
        --nb-cols: 2;
    }

    .component-title-sliding-images-texts--component-wrapper-picture-picture-image__groupKeyFigures {
        height: 6.375rem;
    }

}

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

    .component-title-sliding-images-texts--content__groupKeyFigures {
        --nb-cols: 3;

        margin-top: 3rem;
        margin-bottom: 0;
        grid-template-columns: repeat(auto-fill, calc(100% / var(--nb-cols)));
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures {
        position: relative;
        padding-top: 5.41rem;
        padding-bottom: 5.9rem;
        padding-left: 0;
        padding-right: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures--title {
        margin: 0 0 .5rem;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(1) .topic-image-text--image-wrapper {
        top: 3rem;
        left: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(2) .topic-image-text--image-wrapper {
        bottom: -3.5rem;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3) .topic-image-text--image-wrapper {
        top: 3rem;
        right: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures--label {
        padding: 0 5.5rem;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(4),
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(5),
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(6) {
        padding-bottom: 4.37rem;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(1) .topic-image-text--image-wrapper,
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(2) .topic-image-text--image-wrapper,
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3) .topic-image-text--image-wrapper {
        position: absolute;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(2),
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(4),
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(6) {
        position: relative;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 2):before,
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 2):after {
        content: '';

        position: absolute;
        top: 2.5rem;
        bottom: 2.5rem;

        display: block;
        width: 0;

        border-left: 2px dashed var(--primary-400);
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 4):after,
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 6):after {
        content: '';

        position: absolute;
        left: 2.5rem;
        right: 2.5rem;

        display: block;
        height: 0;

        border-bottom: 2px dashed var(--primary-400);
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 2):before {
        left: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 2):after {
        right: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 4):after,
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 6):after {
        top: 0;
    }

    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 4),
    .component-title-sliding-images-texts--topic-image-text__groupKeyFigures:nth-of-type(3n + 6) {
        flex-direction: column-reverse;
        justify-content: flex-end;
    }

}