.faq-section .container { width: min(var(--max), calc(100% - 2 * var(--gutter))); }
.faq-section .section-title { margin-bottom: 24px; font-size: 64px; }

.faq-intro {
  max-width: 820px;
  margin: 0;
  font-size: 17px;
  line-height: 2.05;
}

.faq-list { border-bottom: 1px solid var(--line); }

.faq-item {
  display: block;
  padding: 0;
  border-top: 1px solid var(--line);
}

.faq-item:first-child { border-top: 0; }

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  color: #0d0d0d;
  background: transparent;
  text-align: left;
  font: 20px/1.35 WorkSans, Arial, sans-serif;
}

.faq-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  transition: transform .25s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.65, 0, .35, 1);
}

.faq-answer > div {
  width: 100%;
  max-width: none;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .42s cubic-bezier(.65, 0, .35, 1);
}

.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 14px; }
.faq-answer p:last-child { padding-bottom: 27px; }

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > div { opacity: 1; transform: translateY(0); }
.faq-item.is-open .faq-icon { transform: rotateX(180deg); }

@media (max-width: 800px) {
  .faq-section .container { width: calc(100% - 48px); }
  .faq-section .section-title { font-size: 45px; }
  .faq-intro { margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
  .faq-question { padding: 20px 0; font-size: 17px; }
  .faq-answer { font-size: 15px; }
  .faq-item.is-open .faq-answer > div { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer, .faq-answer > div, .faq-icon { transition: none; }
}
.faq-answer{font-size:17px;line-height:1.55}
.faq-answer{color:#666}
