.paragraph--type--paragraphe-image-text {
    display: flex;
    gap:32px;
    padding-top:75px;
    padding-bottom:75px;
    flex-direction: column;
}

.paragraph-image-text__text {
    align-self: center;
    
    p{
        color: var(--color-dark);
        font-size: 18px;
        font-weight: 400;
        line-height: 35px; /* 194.444% */
    }
}

.paragraph-image-text__image {
    position: relative;
    margin:0;
    padding:0;
    align-self: center;
    width: fit-content;

    img {
        border-radius: 20px;
        box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.10);
    }

    figcaption {
        position:absolute;
        bottom: -15px;
        right: 80px;
        z-index: 1;
        color: #000;
        text-align: center;
        font-size: 20px;
        font-weight: 900;
        line-height: 30px; /* 107.143% */
    }

    figcaption::before{
        position: absolute;
        display: inline-block;
        z-index: -1;
        content: "";
        transform: skewX(-30deg);
        background-color: var(--color-brand);
        top: -16px;
        left: -20px;
        right: -20px;
        height: 62px;
    }
}

@media all and (min-width: 1000px) {
    .paragraph--type--paragraphe-image-text{
        flex-direction: row;
    }

    .paragraph-image-text__text {
        max-width: 50%;
    }

    .paragraph-image-text--reverse {
        flex-direction: row-reverse;

        figcaption {
            left:80px;
            right: auto;
        }
    }
}