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

.faq {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
}

.faq__aside {
  flex: 1 1 300px;
  min-width: 260px;
}

.faq__title {
  max-width: 16ch;
  margin-top: 16px;
  font-size: clamp(26px, 3vw, 40px);
}

.faq__note {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-soft);
}

.faq__list {
  flex: 1 1 560px;
  min-width: 300px;
}

.faq__item {
  border-bottom: 1px solid rgba(12, 12, 13, 0.12);
}

.faq__heading {
  margin: 0;
  font: inherit;
}

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--c-navy);
  transition: opacity 0.2s var(--ease);
}

.faq__q:hover {
  opacity: 0.7;
}

.faq__sign {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-blue);
}

.faq__sign::after {
  content: "+";
}

.faq__q[aria-expanded="true"] .faq__sign::after {
  content: "–";
}

/* Collapsible body — 0fr → 1fr keeps the reveal animated without JS heights */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__a {
  max-width: 62ch;
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-soft);
  text-wrap: pretty;
}

/* ==========================================================================
   Tablet — copy column stacks above the list
   ========================================================================== */

@media (max-width: 1024px) {
  .faq {
    gap: 24px;
  }

  .faq__aside,
  .faq__list {
    flex: 1 1 100%;
    min-width: 0;
  }

  .faq__title {
    max-width: 24ch;
  }

  .faq__note {
    max-width: 60ch;
  }
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
  .faq {
    gap: 22px;
  }

  .faq__title {
    max-width: none;
    margin-top: 14px;
  }

  .faq__note {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
  }

  .faq__q {
    gap: 14px;
    min-height: 44px;
    padding: 18px 0;
    font-size: 16px;
  }

  .faq__a {
    max-width: none;
    padding-bottom: 18px;
    font-size: 14px;
  }
}
