.table {
  display: grid;
  line-height: 20px;
	font-size: 16px;
	width: 100%;
  grid-column-gap: 10px;
  grid-template-columns: 80px auto;  	
}
.table > .datum {
  grid-column: 1 / span 2;
  font-size: 14px;
  font-weight: bold;
/*  background-color: #6573B6;*/
  background-color: rgba(101,115,182, 0.7);  
  padding: 3px;
  padding-left: 10px;
  margin-bottom: 5px;
  color: #090934; 
}
.table > .veranstalter {
  grid-column: 2; 
	font-size: 16px;
  font-weight: normal;	
  margin-top: 5px;
  color: #090934;
  margin-bottom: 2px;
  cursor: pointer;
	text-align: left;  
	}
.table > .uhrzeit {
  grid-column: 1;	
	text-align: right;
	}
.table > .bezeichnung { 
  grid-column: 2;
	font-size: 16px;
  font-weight: bold;	
  margin-bottom: 2px;
  }
.table > .beschreibung {
  grid-column: 2;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 2px; 
	}
.table > .ort {
  grid-column: 2;
  color: #800;
  font-size: 16px;   
  margin-bottom: 10px;
	}

.gruppe {padding-bottom: 1em;}
.gruppe > a {
	color: #800;
	font-weight: bold;
	text-decoration: none;
  }

.gruppe > .kontakt {
   line-height: 20px;
   border-top: 1px solid black;
   margin-top: 10px;
   padding-top: 10px;
  }

.gruppe > .beschreibung {
   line-height: 20px;
   border-top: 1px solid black;
   margin-top: 10px;
  }  
.gruppe > .beschreibung > p {
   margin-bottom: -10px;
  }
.gruppe > .beschreibung > a {
	color: #800;
	font-weight: bold;
	text-decoration: none;
  }