/* "Before you buy" FAQ: each card is a <details>, collapsed by default. */
html.bw-sales-page-branch-writing #__next .bw-faq-item > summary.bw-feature-item-title {
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  border-bottom-color: transparent;
  user-select: none;
}

html.bw-sales-page-branch-writing #__next .bw-faq-item > summary.bw-feature-item-title::-webkit-details-marker {
  display: none;
}

/* Chevron on the right, turns when open */
html.bw-sales-page-branch-writing #__next .bw-faq-item > summary.bw-feature-item-title::after {
  content: "";
  flex-shrink: 0;
  width: 0.55em;
  height: 0.55em;
  margin-left: 1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.2s ease;
}

html.bw-sales-page-branch-writing #__next .bw-faq-item[open] > summary.bw-feature-item-title::after {
  transform: translateY(25%) rotate(-135deg);
}

html.bw-sales-page-branch-writing #__next .bw-faq-item[open] > summary.bw-feature-item-title {
  border-bottom-color: rgba(var(--color-accent-rgb), 0.22);
}

html.bw-sales-page-branch-writing #__next .bw-faq-item > summary.bw-feature-item-title:focus-visible {
  outline: 2px solid rgba(var(--color-accent-rgb), 0.6);
  outline-offset: -2px;
}

html.bw-sales-page-branch-writing #__next .bw-faq-item .bw-feature-card-body p + p {
  margin-top: 0.75rem;
}
