

  /* ===== FAQ styles ===== */
  .faq {
    /* tweak these to match your site */   
    --faq-pad: 1em;

    background: transparent;
    padding: 2em 1em;
  }

  .faq-inner {
    margin: 0 auto;
  }

  .faq-title {
    line-height: 1.15;
    margin-bottom: 1em;
    color: var(--brand-color);
  }

  .faq-lead {
    margin: 0 0 18px;
    font-size: 1rem;
  }

  .faq-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .faq-list {
    display: grid;
    gap: .7em;
  }

  .faq-item {
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-lg);
    overflow: clip;
  }

  /* remove default marker */
  .faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: var(--faq-pad);
    user-select: none;
  }
  .faq-summary::-webkit-details-marker { display: none; }

  .faq-q {
    font-weight: 500;
    
  }

  /* plus/minus icon (pure CSS) */
  .faq-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    position: relative;
    opacity: .8;
  }
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: currentColor;
    border-radius: 999px;
  }
  .faq-icon::before { width: 18px; height: 2px; } /* horizontal */
  .faq-icon::after  { width: 2px;  height: 18px; } /* vertical */

  .faq-item[open] .faq-summary {
    border-bottom: 1px solid var(--light-border);
  }
  .faq-item[open] .faq-icon::after {
    /* hide vertical bar when open (turns into minus) */
    height: 0;
  }

  .faq-content {
    padding: 14px var(--faq-pad) var(--faq-pad);
  }

  .faq-content p { margin: 0 0 10px; }
  .faq-content p:last-child { margin-bottom: 0; }
  .faq-content ul,
  .faq-content ol { margin: 0 0 10px 20px; }
   ol.rtl { margin: 0 20px 10px 20px; }
  .faq-content li { margin: 6px 0; }

  /* focus styles */
  .faq-summary:focus-visible {
    outline: 3px solid rgba(151,35,173,.35);
    outline-offset: 2px;
    border-radius: 12px;
  }



@media (min-width: 769px) {    

    
    .faq-inner{
      display: flex;
      flex-direction: row;
      gap: 2em;
    }
    .faq-list{
      flex: 2;
    }
    .faq-flex-title{
      flex: 1;  
  }
  
}