/* Wrapper */
.imker-termine-list {
  display: flex;
  flex-direction: column;
  gap: 14px; /* Abstand zwischen Terminen */
}

/* Eine Termin-Zeile */
.imker-termine-row {
  display: grid;
  grid-template-columns:
    120px        /* Datum */
    70px         /* Uhrzeit */
    minmax(260px, 1fr)   /* Veranstaltung */
    minmax(300px, 1.4fr); /* Ort */

  column-gap: 24px;
  row-gap: 6px;
  align-items: start;

  /* absolute Sicherheit gegen Theme-Reste */
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Datum & Uhrzeit */
.imker-termine-date,
.imker-termine-time {
  white-space: nowrap;
}

/* Veranstaltung */
.imker-termine-title {
  font-weight: 700;
}

/* Ort */
.imker-termine-loc {
  color: #555;
}

/* Kleine Monitore: stapeln */
@media (max-width: 900px) {
  .imker-termine-row {
    grid-template-columns: 1fr;
  }
}
