.accordion {
  border: 1px solid #152f52;
  padding: 1rem 1.5rem;
  transition: background 0.75s;
  background: #fff;
  border-radius: 5px;
  margin: 0.4rem 0;
}
.accordion:first-of-type {
  border: 1px solid #152f52;
}
.accordion.section-accordion {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.accordion.section-accordion .container {
  max-width: none;
}
.accordion.section-accordion:last-child {
  margin-bottom: 30px;
}
.accordion.open {
  background: #fff;
}
.accordion.open .accordion__heading {
  color: #002762;
}
.accordion.open .accordion__toggle::after {
  content: url("../images/accordion__arrow--dark.svg");
}

.accordion__toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: inherit;
  padding: 0 32px 0 0;
  position: relative;
  text-align: left;
  width: 100%;
  box-shadow: none;
}
.accordion__toggle::after {
  content: url("../images/accordion__arrow--dark.svg");
  fill: #000;
  height: 0;
  position: absolute;
  right: 0;
  top: 8px;
  transition: transform 0.35s, top 0.35s;
  will-change: transform;
}
.open > .accordion__toggle::after {
  transform: rotate(-180deg);
  top: 18px;
}

.accordion__heading {
  line-height: 1.625;
  font-size: 1.2rem;
  color: #002762;
  font-weight: normal;
  font-family: "Merriweather", Helvetica, serif;
}

.accordion__content {
  max-height: 0;
  line-height: 1.625;
  margin-top: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.15s, margin-top 0.35s;
}
.open > .accordion__content {
  margin-top: 20px;
  max-height: none;
}
.cke_editable .accordion__content {
  margin-top: 20px;
  max-height: none;
}