.badge-separator {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--stroke-color);
  position: relative;
  clip-path: polygon(100% 0%, 45% 50%, 100% 100%, 25% 100%, 25% 50%, 25% 0%);
}
.badge-separator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  clip-path: polygon(100% 0%, 45% 50%, 100% 100%, 25% 100%, 25% 50%, 25% 0%);
  z-index: -1;
  transform: scale(3.5);
}
@media only screen and (min-width: 768px) {
  .badge-separator {
    width: 1.75rem;
   height: 1.75rem;
  }
}
