/* Local ws_split view override: no column gap between image and content —
   the content column carries its own horizontal padding instead. The
   .split-content also gets the theme's .margin-trim utility (see view.php)
   so its first/last child margins don't fight the vertical padding. */
.ws-split {
	display: grid;
	margin-bottom: 1rem;
	.split-content {
		display: flex;
		flex-direction: column;
		padding: 1rem 2rem;
		.indicator {
			margin-top: auto;
		}
	}
	.split-image {
		background-size: cover;
		background-position: center;
	}
	&.small-no-image .split-image {
		display: none;
	}
}
