.box-link {
	text-decoration: none;
	color: inherit;
}
.brotbox {
	display: flex;          /* Bild + Text nebeneinander */
	align-items: flex-start; /* Text oben ausrichten */
	gap: 15px;              /* Abstand zwischen Bild und Text */
	border: 1px dotted gray;
	margin-bottom: 10px;
	padding: 10px;
}
.brotbox img {
	max-width: 50%;           /* oder was du brauchst */
	height: auto;
	display: block;
}
.brotbox .text {
	font-size: 18px;
	line-height: 1.4;
	color: #c2ff00;
	background: #5e6f28;
	padding: 15px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
}
.brotbox .text2 {
	color: #fff;
}
