/**
 * TextAnim Component Styles
 * Converted from TextAnim.module.scss for WordPress
 */

.text {
    width: 100%;
}

.text .textLine {
    margin: 0;
    padding: 0;
    display: block;
}

.text .wordContainer {
    display: inline-block;
    white-space: nowrap;
    /* Prevent breaking within word */
    letter-spacing: -2px;
}

.text .letter {
    display: inline-block;
    background: linear-gradient(to left,
            rgb(255, 255, 255) 50%,
            var(--darkBlue, #002C5F) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    /* Initially show only stroke (right side of gradient) */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px rgba(0, 44, 95, 0.29);
    /* #002c5f4a */
    line-height: 1.2;
    font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
    font-weight: 700;
}

.text .letter.space {
    display: inline-block;
    width: 0.2em;
}

@media (max-width: 700px) {

    .text .letter {
     
        -webkit-text-stroke: 0.5px rgba(0, 44, 95, 0.29);
    
        font-size: 23px;
    }
    

    .text .wordContainer {
        letter-spacing: -1px;
    }
}