.animated-text-wrapper {
	  display: inline;
  align-items: center;
  font-weight: 400;
color: white;
  height: 1em;
  white-space: normal; /* ensures the full sentence can wrap */
	font-size: 12pt;
}

.animated-text {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.3s ease-in-out;
  text-align: center;
font-weight: 600;
	background: linear-gradient(45deg, #4129FF, #1700D5);
	margin-left: 6px;
border-radius: 16px;
padding: 8px;  will-change: transform, opacity;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}


span.prefix{
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform, opacity;
}

.animated-text,
.prefix,
.suffix {
  display: inline;
  white-space: normal; /* allow wrapping */
  vertical-align: baseline;
}

