.uc-torn-bottom {
  position: relative; /* щоб SVG всередині було відносно блоку */
  overflow: hidden;   /* обрізає все зайве нижче блоку */
  /* якщо хочеш, щоб рваний край був плавним */
}

.uc-torn-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* висота рваного краю */
  background: white; /* колір блоку під верхнім */
  clip-path: polygon(
    0% 30%, 10% 50%, 20% 20%, 30% 60%, 40% 30%, 50% 50%, 60% 20%, 70% 60%, 80% 30%, 90% 50%, 100% 20%, 100% 100%, 0% 100%
  );
}