.offre {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 112px 4vw 0 4vw;
}

.offre_scribble {
    width: 30%;
    padding-left: 85%;
}

.offre_grid {
    width: 100%;
    display: grid;
    gap: 16px;
}

.offre_item {
    flex: 1;
    padding: 80px 16px 0 16px;
}

.offre h3 {
    padding-top: 24px;
    font-size: 19.2px;
    height: fit-content;
}

.offre_descript {
    padding-top: 32px;
}

.offre p {
    line-height: 24px;
    font-size: 16px;
    text-align: center;
}

.offre_backlink {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-right: 32px;
    margin-top: 48px;
    align-items: center;
}

.offre_backlink img {
    height: 100%;
    margin-left: 0.5em;
}

@media (min-width: 900px) {
    .offre_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .offre h3 {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .offre_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offre_title {
        padding-bottom: 32px;
    }

    .offre h2 {
        font-size: 25.6px;
    }

    .offre_item {
        padding-top: 3vh;
    }
}

@media (max-width: 600px) {
    .offre_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .offre_backlink img {
        margin-left: 0;
        padding-right: 16px;
    }
}