.faq-topics {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-topic {
  padding: 24px 28px;
  width: 100%;
  background-color: var(--pure-white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px var(--theme-tenth-opacity-color); /* rgba(39, 153, 240, 0.08) */
  transition: all 0.2s ease;

  &[open] {
    .faq-topic__toggle {
      transform: rotate(180deg);
    }
  }

  &:not([open]):hover {
    transform: translate(2px, 2px);
  }
}

.faq-topic__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  position: relative;
}

.faq-topic__icon {
  position: relative;
  &:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: var(--theme-tenth-opacity-color);
    height: 24px;
    width: 24px;
    border-radius: 50%;
  }
}

.faq-topic__toggle {
  margin-left: auto;
  transition: all 0.1s ease-in-out;
}