.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 72ch;
  margin-top: 1.5em;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(16,35,63,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--text-soft);
  max-width: none;
}
