.page-block__inner_text-cards__list{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.page-block__inner_text-cards__item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:50px;
    border-radius: 32px;
    padding: 28px;
    background: #f5f8fa;
}
.page-block__inner_text-cards__item__content{

}
.page-block__inner_text-cards__item__title{
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: #2d2c38;
}
.page-block__inner_text-cards__item__text{
    font-weight: 400;
    font-size: 16px;
    color: rgba(45, 44, 56, 0.7);
    margin-top: 10px;
}

.page-block__inner_text-cards__item__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.page-block__inner_text-cards__item__bottom__label{
    font-weight: 400;
    font-size: 14px;
    color: #8d8ba2;
}
.page-block__inner_text-cards__item__bottom__num{
    border-radius: 100%;
    width: 44px;
    height: 44px;
    background: #00B0E9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

@media (min-width: 1300px) {
    .page-block__inner_text-cards__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}