/* Accordion - GLOBAL ? */
.accordion .title {
  display: block;
  padding: 20px 0;
}
.accordion .toggle {
  cursor: pointer;
  position: relative;
}
.accordion .toggle::after {
  content: "";
  background-image: url(/wp-content/themes/hello-child/img/chevron.svg);
  transform: rotate(180deg);
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 4px;
  transition: transform 100ms linear;
}
.accordion .item.open .toggle::after {
  transform: rotate(0deg);
}
.accordion .item .content {
  padding-right: 56px;
  margin-bottom: 24px;
  width: 100% !important;
}
.accordion .item:not(.open) .content {
  display: none;
}
.accordion .text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: #222c36cc;
}
