.faq {
  margin-bottom: 40px;
}

.faq-item {
  /* min-height: 80px; */
  /* border-radius: 40px; */
  background: #fff;
  padding: 0 40px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item__title {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fontSizeM);

  cursor: pointer;
}

.faq-item__content {
  padding-bottom: 40px;
  line-height: 24px;
  white-space: pre-wrap;

  font-size: 14px;
  /* width: 50%; */
  /* margin-left: auto; */
}

.faq-item__toggle {
  --size: 20px;
  --border: 3px;
  width: var(--size);
  height: var(--size);
  border-right: var(--border) solid #000;
  border-bottom: var(--border) solid #000;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-item {
    padding: 0 20px;
  }

  .faq-item__title {
    min-height: 60px;
  }

  .faq-item__content {
    padding-bottom: 40px;
    line-height: 24px;

    padding-bottom: 20px;
    /* width: 100%; */
    /* margin-left: 0; */
  }

  .faq-item__toggle {
    --border: 2px;
  }
}
