.stitch-cover {
  position: relative;
  background-size: cover;
  background-position: center;
}

.stitch-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.stitch-cover-light::before {
  background: rgba(0, 0, 0, 0.4);
}

.stitch-cover > * {
  position: relative;
  z-index: 1;
}

.stitch-cover-light {
  color: #fff;
}

.stitch-cover-dark {
  color: #000;
}
