.mdx-hero__content h1::after {
  content: "|";
  margin-left: 6px;
  animation: blink 1s infinite;
}

.mdx-hero__content h1 {
  line-height: 1.2;
}

.mdx-hero__content h1 strong {
  background: linear-gradient(90deg, #ffffff, #cfd8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
