/* Typing Cursor Animation */
.typed-cursor {
  display: inline-block;
  width: 2px;
  background: #fff;
  margin-left: 6px;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
  height: 1em;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Typed Feature Line */
.typed-feature-line {
  display: block;
  margin: 6px 0;
}

/* Responsive Hero Title */
@media (max-width: 768px) {
  .cs-hero_title {
    font-size: 34px !important;
    line-height: 1.05;
  }
}
