 .betriebe-kachelkachel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);  
	row-gap: 20px;  
	margin-left: -10px;
	margin-right: -10px;  
} 
 .betriebe-kachelkachel .betriebe-kachel-kachel {
	border: solid 5px #f2f2f2;
	margin: 0 10px;
	cursor: text !important;
	display: flex;
	flex-direction: column; /* Stapelt kachelup über kacheldown */
	height: 100%;           /* Höhe der Kachel übernehmen (Grid/Flex-Parent muss definieren) */
	background: #fff;
	box-sizing: border-box;
}    
 .betriebe-kachelkachel .betriebe-kachel-kachel.activekachel {
	border-color: #d1121f; 
}   


 .betriebe-kachelkachel .activekachel .kacheldown {
	background: #d1121f; 
 
} 
.betriebe-kachelkachel .activekachel .kacheldown ul li,
.betriebe-kachelkachel .activekachel .kacheldown p,
.betriebe-kachelkachel .activekachel .kacheldown ul li:before {
	color: #fff !important; 
} 
 .betriebe-kachelkachel .kachelup { 
	padding: 15px; 
	min-height: 236px;
} 
 .betriebe-kachelkachel .kacheldown {
	background: #f2f2f2;
	padding: 20px 15px 15px 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
 
} 
 
.betriebe-kachelkachel h3 {
	color: #d1121f; 
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.8rem;
	line-height: 2rem;
} 
.betriebe-kachelkachel a,
.betriebe-kachelkachel p {
	display: block;
	text-decoration: none;
	margin-bottom: 14px;
	padding-left: 39px;
	border: none;
	position: relative; 
	transition: all .2s ease-in-out;
}
.betriebe-kachelkachel a:hover  {
	opacity: .6;
}
.betriebe-kachelkachel a.betriebe-info  { 
	margin-bottom: 0; 
}
.betriebe-kachelkachel .betriebe-stationsleiter p { 
	margin-bottom: 0; 
}

.betriebe-kachelkachel a.betriebe-telefon:before,
.betriebe-kachelkachel a.betriebe-email:before,
.betriebe-kachelkachel a.betriebe-info:before,
.betriebe-kachelkachel p:before {
	display: block;
	position: absolute;
	top: 13px; 
	transform: translateY(-50%);  
	color: #5c5c5c;
	z-index: 0;
}
.betriebe-kachelkachel a.betriebe-telefon:before { 
	content: '\e909' !important;
	font-size: 27px; 
	left: 8px;
}
.betriebe-kachelkachel a.betriebe-email:before { 
	content: '\e90b' !important;
	font-size: 19px;
	left: 2px; 
}  
 
.betriebe-kachelkachel a.betriebe-info  { 
	font-weight: 400;
}
 
.betriebe-kachelkachel a.betriebe-info:before { 
	content: '\e901' !important;
	font-size: 26px;
	left: 2px;
	top: 14px; 
}

.betriebe-kachelkachel p  { 
	line-height: 1.5rem;
}


.betriebe-kachelkachel p.betriebe-offnungszeiten:before {
	content: '\e90f' !important;
	font-size: 24px;
	left: 2px;
}
.betriebe-kachelkachel p.betriebe-stationsleiter:before {
	content: '\e916' !important;
	font-size: 23px;
	left: 2px;
	top: 10px;
}

.betriebe-kachelkachel .betriebe-anschrift p {
  margin-bottom: 0;
}


.betriebe-kachelkachel ul  { 
	margin-bottom: 4px;
	width: 100%;
}
.betriebe-kachelkachel ul li { 
	display: block;
	text-decoration: none;
	margin-bottom: 15px !important;
	padding-left: 39px !important;
	border: none;
	position: relative;
	font-weight: 700;
	line-height: 1.3rem;
}
.betriebe-kachelkachel ul li:last-child {  
	margin-bottom: 0 !important; 
}
.betriebe-kachelkachel ul li:before {
	display: block;
	position: absolute;
	top: 9px !important;
	left: 5px !important;
	transform: translateY(-50%) !important;
	color: #fff;
	z-index: 0;
	content: '\e90e' !important;
	font-size: 25px !important; 
} 

 




/* Tablet: 3 Kacheln */
@media (max-width: 1200px) {
 .betriebe-kachelkachel {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Tablet / große Smartphones: 2 Kacheln */
@media (max-width: 900px) {
 .betriebe-kachelkachel {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 Kachel pro Zeile */
@media (max-width: 600px) {
 .betriebe-kachelkachel {
    grid-template-columns: 1fr;
  }
}