/* Fine rules, compact questions, and square arrows from the supplied reference. */
.faq-section { --faq-rule: #b7a78f; --faq-paper: #f5efe6; padding: 72px max(16px, calc((100vw - var(--max)) / 2)); background: var(--faq-paper); color: var(--ink); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .34fr) minmax(0, .66fr); max-width: var(--max); margin-inline: auto; border-block: 1px solid var(--faq-rule); }
.faq-heading { padding: 26px 28px 32px 0; }
.faq-heading h2 { margin: 0; font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.faq-heading p { margin: 12px 0 0; color: #74654f; font-size: 13px; line-height: 1.5; }
.faq-list { min-width: 0; border-inline: 1px solid var(--faq-rule); }
.faq-item { margin: 0; border-bottom: 1px solid var(--faq-rule); overflow: clip; }
.faq-item:last-child { border-bottom: 0; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 66px; padding: 20px 22px; list-style: none; cursor: pointer; touch-action: manipulation; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question h3 { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 600; letter-spacing: -.01em; text-transform: uppercase; }
.faq-arrow { display: grid; place-items: center; flex: none; width: 25px; height: 25px; border: 1px solid var(--faq-rule); color: #5f543f; transition: transform 240ms ease, background-color 160ms ease, color 160ms ease; }
.faq-arrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.faq-item:not([data-faq-enhanced])[open] .faq-arrow,
.faq-item[data-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-question:focus-visible { position: relative; z-index: 1; outline: 2px solid var(--blue); outline-offset: -3px; }
.faq-question:focus-visible .faq-arrow { background: var(--ink); color: var(--faq-paper); border-color: var(--ink); }
@media (hover: hover) {
  .faq-question:hover .faq-arrow { background: var(--ink); color: var(--faq-paper); border-color: var(--ink); }
}
.faq-answer { padding: 0 65px 22px 22px; }
.faq-answer p { margin: 0; color: #5e5547; font-size: 15px; line-height: 1.65; overflow-wrap: anywhere; }
@media (max-width: 800px) {
  .faq-section { padding-block: 52px; }
  .faq-layout { grid-template-columns: minmax(0, 1fr); }
  .faq-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 24px 0; }
  .faq-heading p { margin: 0; }
  .faq-list { border-top: 1px solid var(--faq-rule); }
  .faq-question { gap: 18px; padding: 18px 16px; }
  .faq-question h3 { font-size: 13px; }
  .faq-answer { padding: 0 16px 22px; }
  .faq-answer p { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-arrow { transition: none; }
}
