/* ==========================================================================
   WILA Changing Text — scoped under .wila-changing-text-wrap
   Class names (.swap, .swap-inner) and keyframe (wordIn) match the
   reference exactly; scoping via the ancestor wrapper prevents collisions
   with other plugins/themes without renaming anything.
   ========================================================================== */

.wila-changing-text-wrap {
    display: flex;
    align-items: center;
}

.wila-changing-text-wrap .swap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.wila-changing-text-wrap .swap-inner {
    display: inline-block;
    color: #1E4CFF;
    font-family: "Instrument Serif", Georgia, serif;
    font-style: italic;
    font-size: 120px;
    line-height: 0.95;
    white-space: nowrap;
}

@keyframes wordIn {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}