.accordion-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  padding-inline: 0;
  text-align: left;
  margin: 2rem 0;
}
.accordion-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--background-accent);
  cursor: pointer;
  line-height: 1.25;
  * {
    user-select: none;
  }
}
.accordion-head::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"><style type="text/css">.st0{fill:none;stroke:%23fbbe75;stroke-width:8;stroke-linecap:round;stroke-miterlimit:10;}</style><g><g><polyline class="st0" points="13,32.1 50.2,69.3 87,32.6 "/></g></g></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition-property: transform;
  transition: 0.3s var(--ease);
}
.accr-trigger {
  display: none;
}
.accordion-body {
  position: relative;
  padding: 0 1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition-property: max-height, opacity, padding;
  transition: 0.3s var(--ease);
}
.accr-trigger:checked ~ .accordion-body {
  padding: 1rem;
  opacity: 1;
  max-height: 400svh;
}
.accr-trigger:checked ~ .accordion-head:after {
  transform: rotate(-180deg);
}

.dark,
[data-theme="dark"] {
  .accordion-head::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"><style type="text/css">.st0{fill:none;stroke:%23fbbe75;stroke-width:8;stroke-linecap:round;stroke-miterlimit:10;}</style><g><g><polyline class="st0" points="13,32.1 50.2,69.3 87,32.6 "/></g></g></svg>');
  }
}
