.akkordeon-titel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1rem 0;
  border-bottom: 2px solid #00000020;
  cursor: pointer;
  list-style: none;

  font-family: "SuisseIntl SemiBold";
  font-size: 20px;
  color: black;
}

.akkordeon-titel::-webkit-details-marker {
  display: none;
}

.akkordeon-icon {
  flex: 0 0 auto;
  color: var(--color-abteilung);
  transition: transform 0.2s ease;
}

.akkordeon[open] > .akkordeon-titel .akkordeon-icon {
  transform: rotate(180deg);
}

.akkordeon-inhalt {
  padding-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}
