/* Akkordeon */

.akkordeon {
  margin-bottom: 0 !important;
  border-top: 1.5px solid var(--wp--preset--color--blue-dark);
}
.akkordeon h2 {
  font-size: 1.1em;
  cursor: pointer;
  margin: 0;
  padding: 0.8em 2.5em 0.7em 1rem;
  position: relative;
}
.akkordeon h2::after {
  width: 11px;
  height: 11px;
  border-bottom: 2px solid var(--wp--preset--color--blue-dark);
  border-right: 2px solid var(--wp--preset--color--blue-dark);
  content: "";
  position: absolute;
  right: 1em;
  transform: rotate(45deg);
  top: 1.75rem;
}
.akkordeon h2.active::after {
  transform: rotate(-135deg) translate(-50%, -50%);
  top: 1.75rem; 
}
.akkordeon-inner {
  padding: 0 1rem;
  margin-bottom: 0 !important;
  display: none;
}
.akkordeon-inner > :last-child {
  margin-bottom: 1.1em !important;
}
.akkordeon .wp-block-column {
  margin-bottom: 0.5em !important;
}
