/* 88-sonderformate.css Stand: 20.10.2025 */

:root {
  
	--kachelborder: 1px solid rgba(66,66,66,1);
	--kachelbackground: rgba(69, 137, 85, 0.1);
  
	/*
	--kachelbackground-mittig: rgba(0,255,0,1);
	--kachelborder2: 1px solid rgba(187,187,187,0.2);
	--kachelbackground2: rgba(187,187,187,0.2);
	*/
	
}

/* Wenn Kachel nötig wird innerhalb einer seite */
.kachel {
	background: var(--kachelbackground);
	padding: 0.5em;
	border: var(--kachelborder);
	border-radius: 5px;	
	margin-bottom: 0.7em;
	text-align: center; /* für Bild und Text auf mobile mittig setzen */
	min-height: 5em;
}

/* Video Breite anpassen */

.content-player > figure > video {
	width: 100%;
	border-radius: 5px;	
}

/* für Bild und Text auf mobile mittig setzen 
.kachel .float_left, .media--left>figure {
    float: none;
}*/


@media screen and (min-width: 768px) {

	.kachel {
		text-align: left;
	}

}