.text-split-1-1 {
  --text-split-1-1-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-1-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-1 {
    margin-inline: calc(50% - 50dvw);
    width: 100dvw;
  }
}

.text-split-1-1::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-1::before {
    width: 100dvw;
  }
}

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

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

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

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

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

.text-split-1-1__column--content {
  border-left: 1px solid var(--text-split-1-1-divider-color);
  display: grid;
  gap: clamp(1.35rem, 2.2vw, 1.9rem);
  padding-left: clamp(1.5rem, 2.4vw, 2.25rem);
}

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

.text-split-1-1__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-1__intro :is(h1, h2, h3, h4, h5, h6, p, span, strong, em) {
  color: var(--theme-body-readable) !important;
  font-size: 1rem;
  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;
}

.text-split-1-1__points {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.35rem);
}

.text-split-1-1__point {
  --sticker-rotate: -1.4deg;
  --sticker-start-x: -5.5rem;
  --sticker-start-y: -0.8rem;
  align-items: start;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto minmax(0, 1fr);
  transform-origin: 1.25rem 1.25rem;
}

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

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

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

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

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

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

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

.text-split-1-1.smartify-motion-visible .text-split-1-1__point:nth-child(n + 5) {
  animation-delay: 1400ms;
}

@keyframes text-split-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-1__icon {
  color: var(--color-primary-accent);
  display: inline-flex;
  margin-top: 0.18rem;
}

.text-split-1-1__icon-svg,
.text-split-1-1__icon svg {
  display: block;
  fill: currentColor;
  height: 0.95rem;
  width: 0.95rem;
}

.text-split-1-1__point-copy {
  display: grid;
  gap: 0.25rem;
}

.text-split-1-1__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-1__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-1__grid {
    grid-template-columns: 1fr;
  }

  .text-split-1-1__column--content {
    border-left: 0;
    border-top: 1px solid var(--text-split-1-1-divider-color);
    padding-left: 0;
    padding-top: var(--space-5);
  }
}

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

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