.product-faq {
  background: #fff;
  color: #111;
  padding: 56px 0 64px;
}

.product-faq *,
.product-faq *::before,
.product-faq *::after {
  box-sizing: border-box;
}

.product-faq__inner {
  margin: 0 auto;
  max-width: 1120px;
}

.product-faq__title {
  color: #111;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0 0 28px;
  text-align: center;
  text-transform: uppercase;
}

.product-faq__list {
  border-top: 1px solid #d9d9d9;
}

.product-faq__item {
  border-bottom: 1px solid #d9d9d9;
}

.product-faq__question-heading {
  font-size: inherit;
  margin: 0;
}

.product-faq__question {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  gap: 24px;
  justify-content: space-between;
  line-height: 1.5;
  margin: 0;
  padding: 22px 4px;
  text-align: left;
  width: 100%;
}

.product-faq__question:hover,
.product-faq__question:focus-visible {
  color: #555;
}

.product-faq__question:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.product-faq__icon {
  flex: 0 0 18px;
  height: 18px;
  position: relative;
  width: 18px;
}

.product-faq__icon::before,
.product-faq__icon::after {
  background: currentColor;
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .25s ease;
}

.product-faq__icon::before {
  height: 1px;
  width: 18px;
}

.product-faq__icon::after {
  height: 18px;
  width: 1px;
}

.product-faq__question[aria-expanded='true'] .product-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .32s ease, opacity .22s ease;
}

.product-faq__answer[aria-hidden='false'] {
  opacity: 1;
}

.product-faq__answer-inner {
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.75;
  max-width: 940px;
  padding: 0 44px 24px 4px;
}

.product-faq__answer-inner > :first-child {
  margin-top: 0;
}

.product-faq__answer-inner > :last-child {
  margin-bottom: 0;
}

.product-faq__answer-inner a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-faq__answer-inner {
  color: #4f4f4f;
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 1.75;
  max-width: 940px;
  padding: 0 44px 24px 4px;
}

.product-faq__answer-inner p,
.product-faq__answer-inner span {
  font-weight: 400 !important;
}

@media screen and (max-width: 767px) {
  .product-faq {
    padding: 36px 0 44px;
  }

  .product-faq__title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
  }

  .product-faq__question {
    font-size: 15px;
    gap: 16px;
    padding: 18px 0;
  }

  .product-faq__answer-inner {
    font-size: 14px;
    padding: 0 32px 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-faq__answer,
  .product-faq__icon::before,
  .product-faq__icon::after {
    transition: none;
  }
}

