.wp-block-cover{
	height:auto;
	margin:auto;
	overflow:visible !important;
	/* hotfix for broken block for categories */
	position:relative;
	background-size: cover;
	background-position: 50%;
	min-height: 430px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	box-sizing: border-box;
}

/* @MB / Gutenberg Fix:
Cover Image is now an img instead of bg.
Styles for positioning of cover image are currently (v9.8.1, v10.0.0) loaded in Editor only.
This snippets loads it in frontend
@todo: remove once fixed in Gutenberg
 */
.wp-block-cover-image > img.wp-block-cover__image-background,
.wp-block-cover > img.wp-block-cover__image-background,
.wp-block-cover-image > picture.wp-block-cover__image-background,
.wp-block-cover > picture.wp-block-cover__image-background
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	-o-object-fit: cover;
	object-fit: cover;
	outline: none;
	border: none;
	box-shadow: none;
}
.wp-block-cover-image > picture > img,
.wp-block-cover > picture > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}.sv100_sv_content_wrapper article .wp-block-cover{ 
border-radius:0 0 0 0;
}
