/* FAQ Category */
.faq-section {

}

#faq-section > div {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var( --e-global-color-2dd3412 );
}
#faq-section > div:first-child {
  border-top: 1px solid var( --e-global-color-2dd3412 );
  padding-top: 15px;
}
#faq-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 25px; /* utrymme för pilen */
}
#faq-section p {
  font-size: 16px;
  font-weight: 400;
  color: #111;
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
}

#faq-section h3::after {
  content: "›"; /* hakparentes */
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 1.2rem;
  color: #111;
  transform: rotate(90deg); /* pekar neråt från start */
  transition: transform 0.3s ease;
}

#faq-section h3.active::after {
  transform: rotate(-90deg); /* pekar uppåt när aktiv */
}
#faq-heading {
  font-size: 40px;
  color: #111;
  font-weight: 600;
  font-family: Inter;
}
#faq-section [itemprop="acceptedAnswer"] {
  display: none;
  color: #111;
  font-size: 1rem;
}
/* FAQ Category END */