How would I add line borders between multi columns?

Hi there! I would like to add 2 line borders between my multi columns. Currently it looks like this:

However, I would like it to have these:

The link to my preview is: https://b50vcq6bm9o4mjwh-55086776342.shopifypreview.com

I am comfortable with editing code, thank you!

@williamk0601

Add this code at the bottom Edit code > assets > theme.min.css file

@media screen and (max-width: 749px) {
	.multi-column-blocks__item.grid__item.multi-column-blocks__item--stacked {
    	border-right: 1px solid black;
	}
	.multi-column-blocks__item.grid__item.multi-column-blocks__item--stacked:last-child {
    	border: none;
	}
}

Try it and let me know