.teasers_grid_boxes{
    display: grid;
}

.teasers_grid_boxes.teasers_count-3{
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.teasers_grid_boxes_item{
    padding: clamp(1.5rem,3vw,2rem);
    border: 1px solid #E6E9F2;
    border-radius: 20px;
    display: flex;
    /* justify-content: space-between; */
    justify-content: start;
    flex-direction: column;
    gap: clamp(2rem,3vw,2.5rem);
}

.teasers_grid_boxes_number{
    width: 48px;
    height: 48px;
    border-radius: 20px;
    background: #F5F7FC;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-blue) !important;
}

.teasers_grid_boxes_item_title{
    font-weight: 600;
    font-size: clamp(16px, 2vw,18px);
    line-height: clamp(26px, 2vw,28px);
    color: var(--title-color);
}

.teasers_grid_boxes_item_description{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-color);
}


@media (max-width: 991px) {
    .teasers_grid_boxes.teasers_count-3{
        grid-template-columns: 1fr;
        gap: var(--offset-3);
    }
}