.hns-faqs {
  width: 100%;
  background: #f8f4ec;
  color: #262626;
  padding: clamp(34px, 5vw, 68px) 16px clamp(34px, 5vw, 64px);
}

.hns-faqs *,
.hns-faqs *::before,
.hns-faqs *::after {
  box-sizing: border-box;
}

.hns-faqs__title {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  color: #262626;
  text-align: left;
}

.hns-faqs__list {
  max-width: 760px;
  margin: 0 auto;
}

.hns-faqs__item {
  border-bottom: 1px solid rgba(38, 38, 38, 0.11);
}

.hns-faqs__question {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px 16px 0;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
}

.hns-faqs__question::-webkit-details-marker {
  display: none;
}

.hns-faqs__question::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-60%) rotate(45deg);
  transition: color 160ms ease, transform 160ms ease;
}

.hns-faqs__item[open] .hns-faqs__question::after {
  color: #c58f18;
  transform: translateY(-30%) rotate(225deg);
}

.hns-faqs__answer {
  margin: -6px 0 16px;
  padding-right: 42px;
  color: rgba(38, 38, 38, 0.74);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.hns-faqs__answer > :first-child {
  margin-top: 0;
}

.hns-faqs__answer > :last-child {
  margin-bottom: 0;
}

@media (max-width: 849px) {
  .hns-faqs__title,
  .hns-faqs__list {
    max-width: 100%;
  }

  .hns-faqs__title {
    text-align: center;
  }
}

@media (max-width: 549px) {
  .hns-faqs {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hns-faqs__question {
    min-height: 54px;
    font-size: 13px;
  }
}
