/* =========================================================
   FAQ
   ========================================================= */

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
}

.faq-q h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq-ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open .faq-ic {
  transform: rotate(45deg);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-body p {
  padding: 0 4px 22px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.faq-item.is-open .faq-body {
  max-height: 300px;
}

.faq-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.86rem;
  color: var(--muted);
}

.faq-footnote a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}
