/* Hero Title Alignment Fix */
.hero-title {
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Remove line breaks and ensure proper block display */
.hero-title br {
    display: none;
}

/* Ensure proper spacing for the gradient text spans */
.hero-title .text-gradient {
    display: block;
    line-height: 0.9;
}

/* Fix for character animation spans */
.hero-title .text-gradient .char-animate {
    display: inline-block;
    line-height: inherit;
    vertical-align: baseline;
    height: auto !important;
    box-sizing: content-box;
    min-height: auto;
}

/* Ensure proper spacing between characters */
.hero-title .text-gradient {
    white-space: nowrap;
    letter-spacing: normal;
}