/* Sosic */

details summary {
  position: relative;
  cursor: pointer;
}

details summary::after {
  content: "Weiterlesen...";
  background-color: #1a76d1;
  color: #f8f9fa;
  padding: 0.4em 1.2em;
  border: 1px solid #f8f9fa;
  border-radius: 50rem !important;
}

details[open] summary::after {
  display: none;
}

details[open] summary:hover {
  background-color: #1a76d1;
}

details summary {
  list-style: none;
}


