/*!
 * Mamenza — FAQ accordion (shared)
 * Used everywhere a `.faq-block` appears.
 * SSR-safe: content is in HTML, only collapsed visually after JS enhances.
 */
.faq-block {
  max-width: 720px;
  margin: 40px 0;
  border-top: 1px solid #E8E0D5;
}
.faq-block h2 {
  font-family: var(--font-display, 'Satoshi', 'Inter', sans-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-deep, #1F1F1F);
  margin: 32px 0 4px;
}
.faq-block .faq-dek {
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  color: var(--ink-soft, #6B6B6B);
  margin-bottom: 24px;
}

.faq-item {
  border-top: 1px solid var(--border-soft, #E8E0D5);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border-soft, #E8E0D5);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display, 'Satoshi', 'Inter', sans-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-deep, #1F1F1F);
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.faq-q:hover { color: var(--terracotta, #C85A3F); }
.faq-q:focus-visible { outline: 2px solid var(--terracotta, #C85A3F); outline-offset: 4px; border-radius: 4px; }

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E8E0D5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F1F1F;
  transition: transform .25s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.faq-item.open .faq-q .faq-icon {
  background: #1F1F1F;
  border-color: #1F1F1F;
  color: white;
  transform: rotate(180deg);
}

/* Default: panels open — so content is visible without JS (SEO + no-JS friendly).
   JS adds [data-faq-enhanced] to the block, which collapses panels by default. */
.faq-a {
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-a p {
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink, #4A4A4A);
  margin: 0 0 12px;
}
.faq-a p:last-child { margin-bottom: 0; }

.faq-block[data-faq-enhanced] .faq-a {
  max-height: 0;
  padding-bottom: 0;
}
.faq-block[data-faq-enhanced] .faq-item.open .faq-a {
  max-height: 800px;
  padding-bottom: 24px;
}
