.faq .item {
  border-bottom: 1px solid #787878;
  padding: 40px 0;
}
.faq .item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq .title {
  width: 100%;
  cursor: pointer;
  display: flex;
}
.faq .title h4 {
  margin-bottom: 0;
}
.faq .content {
  width: 100%;
  max-width: 860px;
  display: none;
  padding-top: 40px;
}
.faq .button-wrapper {
  margin-top: 20px;
}
.faq .expand {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  letter-spacing: 0.08em;
  max-width: 64px;
  margin-left: auto;
}
.faq .expand::before, .faq .expand::after {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  right: 0;
  top: 11px;
  background-color: #2C73DE;
  transition: all 0.4s ease;
}
.faq .expand::after {
  transform: rotate(90deg);
}
.faq .expand.mob-hide {
  display: none;
}
.faq .item.active .expand::after {
  transform: rotate(180deg);
}

@media only screen and (max-width: 1060px) {
  .faq .item {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .faq .title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 100%;
    gap: 20px;
  }
  .faq .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
