.texteImage {
    padding: 24px;
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .texteImage {
        flex-direction: row;
    }
}

@media screen and (min-width: 1280px) {
    .texteImage {
        padding: 48px 80px;
        gap: 80px;
    }
}

.texteImage--container {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .texteImage--container {
        flex-direction: row;
    }
}

@media screen and (min-width: 1280px) {
    .texteImage {
        padding: 48px 80px;
        gap: 80px;
    }
}

@media screen and (min-width: 768px) {
    .texteImage.reverse {
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 768px) {
    .texteImage--content {
        flex: 1;
    }
}

.texteImage--content h2+p {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .texteImage--content h2+p {
        margin-top: 24px;
    }
}

.texteImage--content ul+p,
.texteImage--content p+ul,
.texteImage--content p+p {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {

    .texteImage--content ul+p,
    .texteImage--content p+ul,
    .texteImage--content p+p {
        margin-top: 24px;
    }
}

.texteImage--content ul {
    list-style: square;
    padding-left: 16px;
}

.texteImage--content ul li::marker {
    color: var(--bleu-ciel);
}

.texteImage--content p:not(.uptitle) {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

@media screen and (min-width: 768px) {
    .texteImage--content p:not(.uptitle) {
        font-size: 18px;
        line-height: 160%;
    }
}

.texteImage--content .uptitle {
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .texteImage--content .uptitle {
        margin-bottom: 24px;
    }
}

.texteImage--links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .texteImage--links {
        margin-top: 24px;
        justify-content: flex-start;
    }
}

.texteImage--links .btn {
    width: 100%;
}

@media screen and (min-width: 400px) {
    .texteImage--links .btn {
        width: -moz-max-content;
        width: max-content;
    }
}

.texteImage--media {
    width: 100%;
    height: 375px;
    border-radius: 16px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .texteImage--media {
        flex: 1;
        height: auto;
    }
}

.texteImage--media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.texteImage.blue-bg {
    background: var(--bleu-nuit);
}

.texteImage.blue-bg .uptitle {
    color: #E0F8FF;
}

.texteImage.blue-bg h1,
.texteImage.blue-bg h2,
.texteImage.blue-bg h3,
.texteImage.blue-bg ul,
.texteImage.blue-bg p:not(.uptitle) {
    color: white;
}

/*# sourceMappingURL=style.css.map */