.accordion__list {
  display: flex;
  flex-direction: column;
}
.accordion__item {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, #5EFCFF, #E5E5E5) 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}
.accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.accordion__question-text {
  font-family: var(--font-sans, sans-serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  /* When inside content block we might have specific headings inside */
}
.accordion__question-text h3, .accordion__question-text h4, .accordion__question-text h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.accordion__icon {
  flex-shrink: 0;
  width: 14px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-green-dark, #57803A);
  will-change: transform;
  transition: transform 0.3s ease;
}
.accordion__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.accordion__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.accordion__answer-text {
  margin: 0;
  padding: 0 0 clamp(18px, 2.5vw, 28px);
  font-family: var(--font-sans, sans-serif);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: inherit;
  /* allow it to be 100% so we don't crunch on smaller width parents */
  max-width: 100%;
  opacity: 0.8;
  white-space: pre-line;
}

/*# sourceMappingURL=accordion.css.map */
