.rtg-faq-accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 16px;
}

.rtg-faq-item {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  border: 1px solid #0f0f0f1f;
}

.rtg-faq-item.active {
  background: #016cb2;
}

.rtg-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.rtg-faq-item.active .rtg-faq-trigger {
  color: #fff;
}

.rtg-faq-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.rtg-faq-question {
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.4px;
}

.rtg-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.rtg-faq-icon::before,
.rtg-faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
  background: currentColor;
}

.rtg-faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.rtg-faq-trigger[aria-expanded="true"] .rtg-faq-icon::after {
  display: none; /* turns + into - */
}

.rtg-faq-panel {
  padding: 0;
}

.rtg-faq-answer p,
.rtg-faq-answer ul {
  margin: 0;
  font-family: Roboto;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.16px;
}

.rtg-faq-item.active .rtg-faq-answer p,
.rtg-faq-item.active .rtg-faq-answer ul {
  color: rgb(255 255 255 / 80%);
}
