.go-split-image {
	margin: 30px 0;
}
.go-split-image__canvas {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid var(--frame, #d7d7d2);
	border-radius: 12px;
	background: var(--surface-2, #111);
}
.go-split-image__side {
	position: relative;
	min-width: 0;
	overflow: hidden;
}
.go-split-image__side + .go-split-image__side {
	border-left: 2px solid rgba(255,255,255,.82);
}
.go-split-image__side img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.go-split-image__label {
	position: absolute;
	left: 10px;
	bottom: 10px;
	max-width: calc(100% - 20px);
	padding: 6px 9px;
	border-radius: 6px;
	background: rgba(0,0,0,.78);
	color: #fff;
	font-size: .76rem;
	font-weight: 750;
	line-height: 1.2;
}
.go-split-image figcaption {
	margin-top: 8px;
	color: var(--text-secondary, #666);
	font-size: .82rem;
	line-height: 1.45;
}
.go-split-image-editor .components-placeholder__fieldset {
	display: block;
	width: 100%;
}
.go-split-image-editor__grid,
.go-split-image-editor__labels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
}
.go-split-image-editor__picker {
	display: grid;
	place-items: center;
	gap: 10px;
	min-height: 180px;
	padding: 12px;
	border: 1px dashed #8c8f94;
	background: #f6f7f7;
}
.go-split-image-editor__picker img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
@media (max-width: 520px) {
	.go-split-image__canvas { aspect-ratio: 4 / 3; border-radius: 9px; }
	.go-split-image__label { left: 6px; bottom: 6px; padding: 5px 7px; font-size: .66rem; }
}
