/* FAQ_STYLES_V1 */
.faq-section {
  padding: 34px 16px 46px;
}

.faq-section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-section h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.15;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(80, 80, 80, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 17px 52px 17px 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 28px 12px 38px;
  }

  .faq-list summary {
    padding: 15px 46px 15px 15px;
  }

  .faq-answer {
    padding: 0 15px 16px;
  }
}
