.faq {
  padding: var(--sp) 0;
}

.faq__title {
  margin-bottom: var(--title-mb);
}

.faq__items {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.faq__items .item {
  padding: 32px 0;
  border-top: 1px solid var(--neutral-2);
}

.faq__items .item._active .item__question::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M16.7151 5.17797L14.4501 7.34625L5.0547 16.7417L3.45197 15.1389L12.8474 5.74352L3.45266 5.74421L3.45197 3.47857H16.7158L16.7151 5.17797ZM16.7171 16.741H14.506L14.5067 9.57253L16.7171 7.45604V16.741Z' fill='%23EC6428'/%3E%3C/svg%3E") center/contain no-repeat;
}

.faq__items .item:last-child {
  border-bottom: 1px solid var(--neutral-2);
}

.faq__items .item__question {
  position: relative;
  padding-right: 53px;
  font-weight: 600;
  cursor: pointer;
}

.faq__items .item__question::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transition: var(--transition);
  width: 21px;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M15.0164 15.9398L12.8481 13.6748L3.45268 4.27943L5.05541 2.67671L14.4508 12.0721L14.4501 2.6774L16.7158 2.67671V15.9405L15.0164 15.9398ZM3.45337 15.9419V13.7308L10.6218 13.7315L12.7383 15.9419H3.45337Z' fill='%23383938'/%3E%3C/svg%3E") center/contain no-repeat;
}

.faq__items .item__answer {
  display: none;
  padding-top: 16px;
  padding-right: 53px;
}

.faq__col {
  width: calc(50% - 32px);
}

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

  .faq__items .item__answer {
    padding-top: 10px;
  }
}

@media (max-width: 760px) {
  .faq__items {
    gap: 0;
  }

  .faq__col {
    width: 100%;
  }
}