/* FAQ styles */

.faq {
  margin: 2rem auto 5rem auto;
}

.faq-title {
  margin: 0 0 12px;
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 5rem auto 0.5rem auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.faq-q {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq-q:focus-visible {
  outline: 2px solid rgba(255,255,255,0.18);
  outline-offset: 2px;
}

.faq-a {
  padding: 0 16px 16px 16px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
