.wp-block-columns.is-style-columns-seperator
{
	gap: calc(var(--wp--style--block-gap) * 3);
}

.wp-block-columns.is-style-columns-seperator .wp-block-column:nth-child(n + 2)
{
	position: relative;
	margin-top: 0;
}

.wp-block-columns.is-style-columns-seperator .wp-block-column:nth-child(n + 2):before
{
	content:"";
	height: 1px;
	background: var(--wp--preset--color--green);
	position: absolute;
	top: calc(var(--wp--style--block-gap) * -1.5);
	left:0;
	right: 0;
}

@media(min-width: 782px)
{
	.wp-block-columns.is-style-columns-seperator .wp-block-column:nth-child(n + 2):before
	{
		width: 1px;
		height: unset;
		right: unset;
		bottom: 0px;
		top: 0;
		left: calc(var(--wp--style--block-gap) * -1.5);
	}
}
