.faq {
  padding: var(--ajeb-space-2xl) 0;
  background: var(--ajeb-stone);
}

.faq__shell {
  width: min(100% - (var(--ajeb-pad) * 2), var(--ajeb-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.faq h2 {
  font-size: var(--ajeb-fs-h2);
  max-width: 8ch;
}

.faq-item {
  border-top: 1px solid color-mix(in oklch, var(--ajeb-text) 12%, transparent);
}

.faq-item:last-child {
  border-bottom: 1px solid color-mix(in oklch, var(--ajeb-text) 12%, transparent);
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 0;
  font-family: var(--ajeb-font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.faq-item button span:last-child {
  color: var(--ajeb-champagne);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ajeb-ease);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel > p {
  overflow: hidden;
  padding-bottom: 1.3rem;
  max-width: 58ch;
  color: var(--ajeb-muted);
}

@media (max-width: 800px) {
  .faq__shell {
    grid-template-columns: 1fr;
  }
}
