.termine-section details ul li {
  margin: .6em 0 .6em 2em;
  font-size: .9em;
  list-style-type: disc;
}

.termine-section summary {
  padding: .7em .7em .7em 1em;
  background: var(--tertiary);
  color: var(--greyLighter);
  cursor: pointer;
  outline: none;
  border-radius: .3em;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color .3s;
  text-indent: -1.2em;
  /* Damit zweite Zeile eingerückt wird */
  padding-left: 2.2em;
}

.termine-section p.terminInfo {
  font-weight: normal;
  font-size: .8em;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
  color: var(--greyDarker);
  margin-top: -2.4em;
  margin-bottom: 3em;
  text-align: center;
}

.termine-section details h3 {
  margin-top: 2em;
  margin-bottom: .5em;
}

.termine-section summary p {
  margin: 0;
  padding: 0;
  padding-left: 1.2em;
  font-weight: normal;
}

.termine-section details a {
  color: var(--primary);
}

.termine-section details a {
  display: inline-block;
  color: var(--secondary);
  text-decoration: underline;
  font-weight: bold;
  font-size: .9em;
  margin-bottom: 1em;
}

.termine-section details a.cta-kontakt {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: var(--primaryDarker);
  border-radius: 5em;
  color: var(--white);
  text-decoration: none;
  /* width: 80%; */
  /* margin: 0 auto; */
  text-align: center;
}

.termine-section details a.cta-kontakt:hover {
  background-color: var(--primary);
}

.termine-section summary:hover {
  background-color: var(--primaryDarker);
}

.termine-section details[open] summary~* {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0em;
  }
}

.termine-section .thema {
  /* display: flex; */
  padding-top: 1em;
  padding-bottom: 1em;
}

.termine-section .themen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5em 4em;
}

.themen {
  margin-top: 2em;
  margin-bottom: 1.5em;
}