.faq-two-col {
//  padding: 2rem 0;
}

.faq-two-col__row {
  display: flex;
  gap: 15px;
  text-align:left;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ACCORDION ITEM */


/* SUMMARY */
.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-weight: 700;
}

/* Hover */
.faq-item:hover .faq-question {
  color: #50C846;
}

/* Open state */
.faq-item[open] .faq-question {
  color: #50C846;
}

.faq-icon svg {
  transition: transform 0.25s ease;
}

/* Chevron Animation */
.faq-item[open] .faq-icon svg {
  transform: rotate(180deg);
}
.faq-item:hover .faq-icon svg, .faq-item[open] .faq-icon svg {
  color: #50C846;
}

/* Antwort */
.faq-answer {
  margin-top: 1rem;
  font-size: 16px;
    line-height: 1.6;
}
.faq-item[open] .faq-question svg {
    color: #50c846;
}
.faq-question {
    font-weight: 700;
    font-size: 20px;
}
.faq-item {
    background: #fcfcf9;
    border-radius: 12px;
    padding: 20px 25px;
  cursor:pointer;
}
/* MOBILE */
@media (max-width: 767px) {
  .faq-two-col__row {
    flex-direction: column;
  }
}
