.mosaic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
}

.card {
    width: calc(33% - 17px);
    display: block;
    border: 2px solid;
    border-radius: 22px;
    overflow: hidden;
    height: 345px;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.card:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.card__title {
    font-family: Oswald-SemiBold;
    font-size: 20px;
    text-align: left;
}

.card__infos {
    padding: 8px;
}

.card__infos__date-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
}

.card__infos__date-div .calendar-icon {
    margin-right: 8px;
}

.card__infos__date {
    font-family: Oswald-SemiBold;
    font-size: 16px;
}

.card__infos__ages {
    font-family: Oswald-SemiBold;
    font-size: 16px;
    margin-top: 8px;
}
.card__mask {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 35%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 35%);
}

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

.card__infos {
    color: white;
    z-index: 990;
    position: absolute;
    bottom: 0;
}

@media all and (max-width: 1362px) {
    .card {
        width: calc(33% - 18px);
    }
}

@media all and (max-width: 1062px) {
    .card {
        width: calc(33% - 19px);
    }
}
@media all and (max-width: 980px) {
    .card {
        width: calc(50% - 16px);
    }

    .mosaic {
        gap: 16px;
    }

    .card:hover {
        transform: none;
    }
}

@media all and (max-width: 600px) {
    .card {
        width: 100%;
    }
}