.bl_faqList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl_faqItem {
  background: #fff;
  border-radius: 4px;
  border: 2px solid var(--color-accent);
}

.bl_faqCategory_title {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.0714rem + 0.8929vw, 1.5rem);
  line-height: 1;
  color: var(--color-accent);
}

.bl_faqItem_question {
  appearance: none;
  border: none;
  background: transparent;
  padding: 12px;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text);
}

.bl_faqItem_question::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url(../../img/common/faq-minus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  flex-shrink: 0;
}

.bl_faqItem_answer:not([hidden]) {
  padding: 0px 12px 20px;
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.bl_faqItem_q {
  font-weight: 700;
  font-size: clamp(1.25rem, 0.8929rem + 1.7857vw, 1.75rem);
  color: var(--color-accent);
}

.bl_faqItem_a {
  font-weight: 700;
  font-size: clamp(1.25rem, 0.8929rem + 1.7857vw, 1.75rem);
  color: #ff5000;
}

.bl_faqItem_question {
  position: relative;
  cursor: pointer;
}

.bl_faqItem:has(.bl_faqItem_answer[hidden]) .bl_faqItem_question::after {
  background-image: url(../../img/common/faq-plus.svg);
}

.bl_faqItem_answer ul {
  margin-block: 20px;
}

.bl_faqItem_answer ul li {
  list-style-type: disc;
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .bl_subpCont {
    gap: 80px;
  }

  .bl_faqCategory_title {
    margin-bottom: 40px;
  }

  .bl_faqItem_question,
  .bl_faqItem_answer:not([hidden]) {
    gap: 20px;
    padding-inline: 34px;
  }

  .bl_faqItem_question::after {
    width: 24px;
    height: 24px;
  }
}
