/* Shared FAQ module. Content remains in each page; disclosure uses native details. */
body .faq-section { padding: 36px 0; }
body .faq-section .section-head { display: block; margin-bottom: 20px; }
body .faq-section h2 { max-width: 850px; margin-bottom: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.15; }
body .faq-section .faq-layout { display: block; }
body .faq-list {
  margin-top: 20px;
  border-top: 1px solid var(--line, #d4cabe);
  background: var(--paper, #fbf8f2);
}
body .faq-list .faq-item {
  margin: 0;
  padding: 0 20px;
  border: 0;
  border-bottom: 1px solid var(--line, #d4cabe);
  border-radius: 0;
  background: transparent;
}
body .faq-list .faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  color: var(--ink, #191714);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  list-style: none;
}
body .faq-list .faq-item > summary strong,
body .faq-list .faq-item > summary b { font-weight: inherit; }
body .faq-list .faq-item > summary::marker,
body .faq-list .faq-item > summary::-webkit-details-marker { display: none; content: ''; }
body .faq-list .faq-item > summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--muted, #625d55);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
body .faq-list .faq-item[open] > summary::after { content: '−'; }
body .faq-list .faq-item > summary:focus-visible { outline: 2px solid #518532; outline-offset: 3px; }
body .faq-list .faq-item p {
  max-width: 820px;
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted, #625d55);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
body .faq-list .faq-item a { color: var(--ink, #191714); font-weight: 400; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  body .faq-section { padding: 28px 0; }
  body .faq-list .faq-item { padding: 0 16px; }
  body .faq-list .faq-item > summary { gap: 16px; padding: 12px 0; }
}
