
body:not(.wp-admin) .standout-colored-text-box > * > * > .acf-innerblocks-container,
body.wp-admin .standout-colored-text-box > * > * > .acf-innerblocks-container > * {
	display: grid;
	grid-template-columns: 50% minmax(0, 1fr);
	align-items: start;
	gap: var(--gap-l);
}

#page .standout-colored-text-box .left p,
.standout-colored-text-box .left p {
	max-width: 100%;
}

.standout-colored-text-box .right {
	padding: calc(3 * var(--gap-s));
	padding-bottom: calc( ( 3 * var(--gap-s) ) - ( ( 1em * var(--line-height) ) - 1em ) );
	background-image: url('background-deco.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
}
body.wp-admin .standout-colored-text-box .right.acf-block-preview {
	padding: 0;
}

.standout-colored-text-box .standout-colored-text-box-content {
	background-color: var(--colored-text-box-bg, transparent);
	color: var(--colored-text-box-color, var(--color-text));
}

.standout-colored-text-box .right .heading {
	font-size: 40px;
	text-transform: uppercase;
}

.standout-colored-text-box .right .links {
	margin-top: 2em;
}

.standout-colored-text-box .right .links .link {
	display: flex;
	align-items: center;
	line-height: 2.5;
	border-top: 1px solid currentColor;
	text-decoration: none;
}

.standout-colored-text-box .right .links .link .standout-custom-svg {
	margin-left: auto;
	transition: var(--transition);
	transition-property: transform;
}

.standout-colored-text-box .right .links .link .standout-custom-svg svg {
	width: 1em;
	height: auto;
}

.standout-colored-text-box .right .links .link:hover .standout-custom-svg {
	transform: translateX(10px);
}
