.animated-typography-c57bd94c {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.animated-typography-c57bd94c .at-static-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

.animated-typography-c57bd94c .at-animated-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 1.2em; /* Scales seamlessly with typography line-height */
    line-height: 1.2;
    overflow: hidden;
}

.animated-typography-c57bd94c .at-word-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Vertically center inside the wrapper */
    font-size: 42px; /* Default size, overridden by Elementor Typography */
    font-weight: 700;
    white-space: nowrap;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease-in-out;
}

.animated-typography-c57bd94c .at-word-item.is-active {
    transform: translateY(0);
    opacity: 1;
}

.animated-typography-c57bd94c .at-word-item.is-exiting {
    transform: translateY(-100%);
    opacity: 0;
}