/* ===== FAQ Accordion (Recoautos style) ===== */
:root{
  --faq-bg:#05222A;
  --faq-muted:#F0F0F0;
  --faq-accent:#41A10F;
  --faq-sep:#D6D6D6;
}


.familjen-grotesk-700 {
    font-family: "Familjen Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.familjen-grotesk-400 {
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



.faq-section{
  background:var(--faq-bg);
  color:var(--faq-muted);
  padding:clamp(24px,6vw,64px) clamp(16px,5vw,48px);
}

.faq-title{
  font-size:clamp(24px,2.6vw,24px);
  text-align:left;
  margin:0 0 24px;
  line-height:1.55;
}

.faq-intro{
  max-width:980px;
  margin:0 auto 24px;
  color:var(--faq-muted);
  line-height:1.55;
  font-size:16px;
}

.faq-accordion{
  max-width:1100px;
  margin:0 auto;
}

.faq-item{
  border-bottom:1px solid var(--faq-sep);
}

.faq-button {
  width:100%;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:16px;
  background:transparent;
  color:inherit;
  padding:16px;
  text-align:left;
  cursor:pointer;
  border:0;
}

.faq-question{
  font-size:clamp(16px,1.4vw,16px);
}

.faq-icon{
  width:22px;
  height:22px;
  display:inline-block;
}

.faq-icon line{
  stroke:var(--faq-accent);
  stroke-width:2;
  stroke-linecap:round;
  transition:opacity .2s ease;
}

.faq-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease,opacity .25s ease;
  opacity:0;
}

.faq-panel-inner{
  padding:0 40px 32px 16px;
  color:var(--faq-muted);
  line-height:1.6;
  font-size:16px;
}

.faq-item.is-open .faq-panel{
  opacity:1;
}

.faq-item.is-open .faq-icon .vbar{
  opacity:0;
}

.faq-button:focus-visible{
  outline:2px solid var(--faq-accent);
  outline-offset:3px;
}

.faq-accordion .faq-item .faq-button:focus {
  outline: none;
}


@media (min-width: 800px) {

  .faq-title {
    text-align: center;
  }

}

