[data-component-id="befora:faq-item"] {
  display: block;
  border-bottom: 1px solid var(--bef-hairline, #D5D0C0);

  &:last-of-type {
    border-bottom: none;
  }

  .befora-faq-question {
    list-style: none;
    cursor: pointer;
    padding: var(--s-5, 24px);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s-4, 16px);
    font-family: var(--bef-display);
    font-size: var(--fs-19);
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--bef-ink, #1B1814);
  }

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

  .befora-faq-question-text {
    flex: 1;
  }

  .befora-faq-toggle {
    flex: 0 0 auto;
    width: 1ch;
    font-family: var(--bef-mono);
    font-size: var(--fs-16);
    color: var(--bef-stone, #6F6557);
    letter-spacing: 0.14em;
    text-align: center;
    line-height: 1;
  }

  .befora-faq-toggle::before {
    content: "+";
  }

  &[open] .befora-faq-toggle::before {
    content: "\2212"; /* minus sign */
  }

  .befora-faq-answer {
    padding: 0 var(--s-5, 24px) var(--s-5, 24px);
    font-size: var(--fs-14);
    line-height: 1.65;
    color: var(--bef-graphite, #494238);
    max-width: 78ch;
  }
}
