/* UL: normale Liste, kein Flex */
ul.gruppe-events {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

/* LI: horizontales Layout für Titel (links) + Datum (rechts) */
ul.gruppe-events li.gruppe-event {
  display: flex;                     /* nur das LI ist flex */
  justify-content: space-between;    /* Datum ganz nach rechts */
	width: 70%;
  align-items: center;
  gap: 14px;
  background-color: #333333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 0 0 .9em 0;
  transition: background-color .25s ease;
}

ul.gruppe-events li.gruppe-event:hover {
  background-color: #555555;
}

/* Titel */
ul.gruppe-events .ge-title {
  flex: 1 1 auto;        /* nimmt restliche Breite */
  min-width: 0;          /* erlaubt Ellipsis */
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Datum (rechts) */
ul.gruppe-events .ge-date {
  flex: 0 0 auto;
  font-size: .9em;
  opacity: .85;
  color: #fff;
  white-space: nowrap;   /* Datum bleibt in einer Zeile */
}