.accordion {
  padding-top: var(--spacing-1);
}
.accordion__wrapper {
  margin-bottom: 3rem;
  border-bottom: 1px solid #C8BFB6; 
}
.accordion__wrapper .accordion__wrapper {
  padding-bottom: 1.8rem;
}
.accordion__wrapper:last-of-type {
  padding-bottom: 0;
}
.accordion__wrapper:last-of-type .accordion__content:last-of-type {
  padding-bottom: 0;
}
.accordion__header {
  position: relative;
  padding-left: 40px;
  line-height: var(--line-height-2);
  cursor: pointer;
}
.accordion__header:before {
  content: "";
  background-image: url('../../_images/icons/accordion-open.avif');
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  margin-top: 0.1rem;
  float: left;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--accordion-icon-color);
  cursor: pointer;
}
.accordion__header.active:before {
  content: "";
  background-image: url('../../_images/icons/accordion-close.avif');
}

.accordion__header .heading--5 {
  margin-bottom: 3rem;
}

.accordion__content {
  padding: 0 40px;
  display: none;
}
.accordion__content.active {
  /* display: block; */
}
