/* FAQ (BEM) */
.faq {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 1rem 1.25rem;
  width: 100%;
}
.faq__title {
  color: #1f2937;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2222;
  margin-bottom: 1.5rem;
}
.faq__intro {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}
.faq__item {
  border-bottom: 1px solid #d1d5db;
  padding: 1rem 0;
}
.faq__item:last-of-type {
  border-bottom: none;
}
.faq__question {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 1rem 0;
  padding-left: 1rem;
  padding-top: 0px;
  text-indent: -1rem;
}
.faq__question:before {
  background: #fbbf24;
  content: '';
  display: inline-block;
  height: 1.75rem;
  margin: 0 10px -7px 0;
  width: .25rem;
}
.faq__question:hover {
  cursor: pointer;
}
.faq__answer {
  transition: 1s;
}
.faq__answer--collapsed {
  display: none;
  height: 0;
}
.faq__answer--expanded {
  display: inherit;
  height: 100%;
}
.faq__answer-inner {
  display: inherit;
} 