.ly_faqContent {
  padding: 160px 20px;
}

.el_sectionTitle p {
  margin-top: 40px;
}

.bl_faqContent + .bl_faqContent {
  margin-top: 80px;
}

.bl_faqList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.bl_faqList_item {
  border-radius: 8px;
  background: #f5f5f5;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  user-select: none;
}

.bl_faqList_question {
  padding: 24px 12px 16px;
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(1rem, 0.9107rem + 0.4464vw, 1.125rem);
  line-height: 1.2;
  flex-grow: 1;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  align-items: center;
  color: inherit;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.bl_faqList_question:focus,
.bl_faqList_question:active {
  outline: none;
  background: none;
}

.bl_faqList_question span:first-child {
  flex-shrink: 0;
  padding-right: 16px;
  margin-right: 8px;
  border-right: 1px solid currentColor;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1429rem + 1.7857vw, 2rem);
  line-height: 1;
  text-align: center;
  display: flex;
  height: 100%;
}

.bl_faqList_question svg:last-child {
  align-self: center;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.bl_faqList_question svg path {
  fill: currentColor;
}

/* Answer - hidden by default */
.bl_faqList_answer {
  display: grid;
  font-size: 16px;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.3s ease,
    padding 0.3s ease;
  padding: 0 12px;
}

.bl_faqList_answer > p {
  overflow: hidden;
  padding-top: 0;
  transition: padding-top 0.3s ease;
}

/* Open state */
.bl_faqList_item.isOpen {
  background: #fd5500;
  color: #fff;
}

.bl_faqList_item.isOpen .bl_faqList_question svg:last-child {
  transform: rotate(180deg);
}

.bl_faqList_item.isOpen .bl_faqList_answer {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .ly_faqContent {
    padding-block: 200px;
  }

  .bl_faqContent + .bl_faqContent {
    margin-top: 120px;
  }

  .bl_faqList {
    margin-top: 40px;
  }

  .bl_faqContent {
    max-width: 1040px;
    margin: 0 auto;
  }

  .bl_faqList_question {
    padding: 24px 32px;
  }

  .bl_faqList_answer {
    padding: 0 32px;
  }

  .bl_faqList_item.isOpen .bl_faqList_answer {
    padding-bottom: 24px;
  }
}
