.faq {
  background-color: var(--gh-gray-300);
  border: 1px solid var(--gh-grey-150, #e9ecef);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
  text-align: left;
}

/* Oculta el triángulo por defecto */
.faq summary::-webkit-details-marker {
  display: none;
}

/* Ícono + a la izquierda */
.faq summary::before {
  content: "+";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #333333;
  font-size: 18px;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Al abrir, cambia a – */
.faq[open] summary::before {
  content: "–";
  transform: none;
}

.faq-content {
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 22px 18px 46px;
  color: #6c757d;
}

.faq-content ul {
  margin-top: 0.5rem;
}
