.mosaic--container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .mosaic--container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 48px;
    }
}

.mosaic--buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 992px) {
    .mosaic--buttons {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        order: 2;
        margin-left: auto;
    }
}

.mosaic--header {
    text-align: center;
}

@media screen and (min-width: 992px) {
    .mosaic--header {
        text-align: left;
        max-width: 628px;
        order: 1;
    }
}

.mosaic--header .uptitle {
    margin-bottom: 8px;
}

.mosaic--header h2 {
    margin-bottom: 24px;
}

.mosaic--header h2+p {
    color: var(--neutre-30);
}

@media screen and (min-width: 768px) {
    .mosaic--content {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 24px;
        column-gap: 24px;
        order: 3;
    }
}

.mosaic--item {
    border-radius: 16px;
    overflow: hidden;
}

.mosaic--item:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .mosaic--item {
        border-radius: 32px;
    }
}

.mosaic--item:nth-child(1) {
    height: clamp(0px, 44.44vw, 250px);
    background: var(--bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(1) {
        height: clamp(250px, 28.47vw, 410px);
    }
}

.mosaic--item:nth-child(1) img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    max-height: 410px;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(2) {
        height: clamp(0px, 17.08vw, 245px);
    }
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(3) {
        height: clamp(0px, 21.11vw, 304px);
    }
}

.mosaic--item:nth-child(4) {
    height: clamp(436px, 121.11vw, 500px);
    color: white;
    padding: 24px 24px 32px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), var(--bg) lightgray -116.517px 0px/209.513% 100% no-repeat;
    background-size: cover;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(4) {
        height: clamp(0px, 24.44vw, 352px);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), var(--bg) lightgray 50%/cover no-repeat;
        background-size: cover;
    }
}

.mosaic--item:nth-child(4) div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(4) div {
        flex-direction: row;
        align-items: flex-end;
    }
}

.mosaic--item:nth-child(4) div a {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.mosaic--item:nth-child(4) div a::after {
    content: "";
    -webkit-mask: url("../images/arrow.svg") no-repeat center;
    mask: url("../images/arrow.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--blue);
    width: 18px;
    height: 18px;
    transition: all 0.4s ease;
}

.mosaic--item:nth-child(4) div a:hover {
    background: var(--blue);
}

.mosaic--item:nth-child(4) div a:hover::after {
    background: white;
}

.mosaic--item:nth-child(5) {
    background: linear-gradient(180deg, #FFD5C3 0%, #FFD1D9 100%);
    background: url("../images/bg-ofa.jpg") no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(5) {
        height: clamp(0px, 30.28vw, 436px);
    }
}

.mosaic--item:nth-child(5) img {
    max-height: 394px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (min-width: 992px) {
    .mosaic--item:nth-child(6) {
        height: clamp(0px, 15.28vw, 220px);
    }
}

.mosaic .txt {
    background: var(--creme);
    padding: 24px;
}

.mosaic .txt,
.mosaic .bg {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mosaic .title {
    font-family: var(--radikal);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 4px;
}

@media screen and (min-width: 992px) {
    .mosaic .title {
        font-size: 2rem;
        line-height: 44px;
    }
}

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