.product-faq-list {
  margin: 0;
}

.product-faq-list dt {
  box-shadow: inset 0 1px 0 rgb(16 28 34 / 10%);
}

.product-faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ft-ink, #101c22);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 360ms cubic-bezier(0.32, 0.72, 0, 1);
}

.product-faq-trigger::after {
  content: "+";
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  margin-left: 1rem;
  border-radius: 50%;
  background: var(--ft-mist, #e8f3f5);
  color: var(--ft-accent-strong, #05677a);
  transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1), background-color 500ms cubic-bezier(0.32, 0.72, 0, 1);
}

.product-faq-trigger[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.product-faq-list dd {
  margin: 0;
  padding: 0 0 1rem;
}

.product-faq-trigger:focus-visible {
  outline: 3px solid rgb(7 127 153 / 24%);
  outline-offset: 4px;
}

.product-faq-trigger:hover {
  color: var(--ft-accent-strong, #05677a);
}
