
.product-faq {  height: 460px;
  padding-top: 49px;
}

.product-faq.has-open-answer {
  height: auto;
  min-height: 460px;
  padding-bottom: 49px;
}

.product-faq .product-section__title {
  margin-bottom: 40px;
}

.product-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.product-faq__item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 10px;
}

.product-faq__item h3 {
  margin: 0;
}

.product-faq__item button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  color: #3d444e;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.product-faq__item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #94a1b1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.product-faq__item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.product-faq__answer {
  padding: 0 24px 18px;
  color: #707883;
  font-size: 13px;
  line-height: 1.7;
}

.product-faq__answer p {
  margin: 0 0 10px;
}

.product-faq__answer > :last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .product-faq {
    height: auto;
  }
}

@media (max-width: 640px) {
  .product-faq__grid {
    grid-template-columns: 1fr;
  }

  .product-faq__item button {
    align-items: flex-start;
    padding-block: 16px;
  }

}

