/*
  stitch-divider.css — composant décoratif « point de couture »
  Petit filet en tirets façon point de bâti, utilisé pour séparer des blocs.
  Le SVG est inline dans le HTML (aria-hidden="true").
*/
.stitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: var(--space-6);
  color: var(--color-terracotta);
}

.stitch-divider svg {
  width: 100%;
  max-width: 220px;
  height: 14px;
}

.stitch-divider--tight {
  margin-block: var(--space-4);
}
