.text-split-1-2 {
  --text-split-1-2-divider-color: var(--color-primary);
  background: var(--theme-surface-fill);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  isolation: isolate;
  margin-inline: calc(50% - 50vw);
  min-height: var(--text-split-1-2-min-height, 18rem);
  padding: calc(var(--theme-surface-section-padding-block) + var(--theme-surface-text-safe-block))
    var(--section-rail-padding-inline);
  position: relative;
  width: 100vw;
}

@supports (width: 100dvw) {
  .text-split-1-2 {
    margin-inline: calc(50% - 50dvw);
    width: 100dvw;
  }
}

.text-split-1-2::before {
  background: var(--theme-surface-fill);
  content: "";
  inset-block: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

@supports (width: 100dvw) {
  .text-split-1-2::before {
    width: 100dvw;
  }
}

.text-split-1-2__grid {
  align-items: center;
  display: grid;
  gap: var(--text-split-1-2-column-gap, 3.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: inherit;
}

.text-split-1-2--content-top .text-split-1-2__grid {
  align-items: start;
}

.text-split-1-2--content-bottom .text-split-1-2__grid {
  align-items: end;
}

.text-split-1-2__column {
  min-width: 0;
}

.text-split-1-2__column--heading {
  align-self: center;
}

.text-split-1-2__heading,
.text-split-1-2__point-title,
.text-split-1-2__point-body {
  margin: 0;
}

.text-split-1-2__heading :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--theme-heading-strong) !important;
  font-family: var(--font-display);
  font-size: var(--text-display-lg);
  font-style: inherit;
  font-weight: 520;
  hyphens: none;
  letter-spacing: -0.045em;
  line-break: auto;
  line-height: 1.05;
  margin: 0;
  overflow-wrap: normal;
  text-shadow: var(--theme-heading-shadow, none);
  word-break: normal;
}

.text-split-1-2__column--points {
  display: grid;
  gap: clamp(1.6rem, 2.4vw, 2.25rem);
}

.text-split-1-2__point {
  --sticker-rotate: -1.4deg;
  --sticker-start-x: -5.5rem;
  --sticker-start-y: -0.8rem;
  display: grid;
  gap: var(--space-3);
  transform-origin: left top;
}

.smartify-motion-ready .text-split-1-2:not(.smartify-motion-visible) .text-split-1-2__point {
  opacity: 0;
  transform: translate3d(var(--sticker-start-x), var(--sticker-start-y), 0) rotate(var(--sticker-rotate)) scale(0.96);
}

.text-split-1-2__column--points:nth-child(3) .text-split-1-2__point {
  --sticker-rotate: 1.4deg;
  --sticker-start-x: 5.5rem;
  --sticker-start-y: -0.8rem;
}

.text-split-1-2__point:nth-child(2n) {
  --sticker-rotate: 1deg;
  --sticker-start-x: -4.5rem;
  --sticker-start-y: 1.4rem;
}

.text-split-1-2__column--points:nth-child(3) .text-split-1-2__point:nth-child(2n) {
  --sticker-rotate: -1deg;
  --sticker-start-x: 4.5rem;
  --sticker-start-y: 1.4rem;
}

.text-split-1-2.smartify-motion-visible .text-split-1-2__point {
  animation: text-split-1-2-sticker-stick 900ms cubic-bezier(0.22, 0.75, 0.22, 1) both;
}

.text-split-1-2.smartify-motion-visible .text-split-1-2__point:nth-child(2) {
  animation-delay: 700ms;
}

.text-split-1-2.smartify-motion-visible .text-split-1-2__column--points:nth-child(3) .text-split-1-2__point:nth-child(1) {
  animation-delay: 350ms;
}

.text-split-1-2.smartify-motion-visible .text-split-1-2__column--points:nth-child(3) .text-split-1-2__point:nth-child(2) {
  animation-delay: 1050ms;
}

@keyframes text-split-1-2-sticker-stick {
  from {
    opacity: 0;
    transform: translate3d(var(--sticker-start-x), var(--sticker-start-y), 0) rotate(var(--sticker-rotate)) scale(0.96);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

.text-split-1-2__point-rule {
  background: var(--text-split-1-2-divider-color);
  display: block;
  height: 1px;
  width: 2rem;
}

.text-split-1-2__point-title :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--theme-heading-strong) !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: inherit;
  font-weight: 700;
  hyphens: none;
  letter-spacing: -0.015em;
  line-break: auto;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.text-split-1-2__point-body :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--theme-body-readable) !important;
  font-size: 0.97rem;
  font-style: inherit;
  font-weight: 400;
  hyphens: none;
  letter-spacing: -0.01em;
  line-break: auto;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 991px) {
  .text-split-1-2__grid {
    gap: clamp(var(--space-6), 4vw, var(--space-8));
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {
  .text-split-1-2 {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-split-1-2__point {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
