@layer components {

  .faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-body);
  }

  .faq-item {
    background: var(--color-white);
    border-radius: 30px;
    cursor: pointer;
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 25px;
    min-height: 60px;
  }

  .faq-question-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--color-ink);
    flex: 1;
    margin: 0;
  }

  .faq-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-brand-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
  }

  .faq-toggle img {
    width: 20px;
    height: 20px;
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item[open] .faq-toggle img {
    transform: rotate(180deg);
  }

  .faq-answer {
    overflow: hidden;
  }

  .faq-answer-inner {
    padding: 0 25px 18px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-ink);
    margin: 0;
  }
  @media (max-width: 767px) {
  .faq-question-text {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 20px;
  }
}

}
