/* Split Text Reveal Widget */

.wml-str-wrapper {
    position: relative;
}

.wml-str-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wml-str-sentence {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    gap: 0;
}

.wml-str-word {
    text-transform: uppercase;
    line-height: 1;
    white-space: pre;
}

.wml-str-image-container {
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: width, opacity;
    padding: 0 15px;
}

.wml-str-image-container img {
    object-fit: cover;
    border-radius: 6px;
    transform: scale(1.3);
    transition: transform 0.1s;
}