.cards-with-images {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.cards-with-images .cards-with-images__card {
    flex: 1;
    background-color: #F8FAFF;
    border-radius: 16px;
}

.cards-with-images .cards-with-images__img-wrapper {
    padding: 12px;
    padding-bottom: 0;
}

.cards-with-images .cards-with-images__img-wrapper img {
    width: 100%;
    height: auto;
}

.cards-with-images .cards-with-images__text-wrapper {
    padding: 20px;
}

.cards-with-images .cards-with-images__title-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.cards-with-images .cards-with-images__card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #474766;
}

@media screen and (max-width: 800px) {
    .cards-with-images .cards-with-images__card-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 765px) {
    .cards-with-images {
        flex-direction: column;
    } 
}
