.faq {
  margin: 40px 0 64px;
}

.faq-card {
  display: grid;
  gap: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-row {
  display: block;
  background: #141416;
  border: 1px solid #2A2B30;
  border-left: 0;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
}

.faq-row::before,
.faq-row:before {
  content: none;
  display: none;
}

.faq-row + .faq-row {
  border-top: 1px solid #2A2B30;
}

.faq-row summary {
  list-style: none;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text-strong);
}

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

.faq-row summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-fill);
  color: var(--color-brand);
  font-weight: 700;
}

.faq-row[open] summary::after {
  content: "-";
}

.faq-row p {
  margin: 0;
  max-width: none;
  padding: 0 24px 22px;
  color: var(--color-text-weak);
  font-size: 16px;
  line-height: 26px;
}
