/* hide title on front-page */
.page-id-20 main > div:first-child {
	display: none;
}

/* Display */

/*
.wp-custom-block-display {
	background-image: url(http://wp.publikmacher.de/wp-content/uploads/2024/09/IMG_0284-web.jpg);
	background-size: cover;
}
*/
.wp-custom-block-display .wp-block-heading {
	font-size: xx-large;
	text-align: center;
	margin-block: 0em;
	padding-block: 0.5em;
	line-height: 1.1;
	text-wrap: balance;
}
.wp-custom-block-display .wp-custom-block-display-text {
	padding: 0.5em 0.25em;
}
img{
	max-inline-size: 100%;
}
@media screen and (orientation: portrait) {
	.wp-custom-block-display .wp-block-heading {
		z-index: 1;
		position: relative;
	}
	.wp-custom-block-display .wp-block-image {
		margin-top: -4em;
		max-inline-size: 45%;
		display: block;
	}
	.wp-custom-block-display .wp-custom-block-display-text {
		background: #fff;
		margin-top: 0 !important;
		padding: 0.5em var(--wp--style--root--padding-right);
	}
}
@media screen and (orientation: landscape) {
	.wp-custom-block-display {
		display: grid;
		grid-template-columns: 33% auto;
		grd-template-rows: auto auto;
		grid-gap: 5px;
		grid-template-areas:
		 "header header" 
		 "sidebar main";
	}
	.wp-custom-block-display > *:nth-child(1) {
		grid-area: header;
		z-index: 1;
	}
	.wp-custom-block-display > *:nth-child(2) {
		grid-area: sidebar;
		align-self: end;
	}
	.wp-custom-block-display > *:nth-child(2) img {
		margin-top: -2em;
	}
	.wp-custom-block-display > *:nth-child(3) {
		grid-area: main;
	}
}