.RotatingWord{display:inline-grid;vertical-align:baseline;text-align:left;line-height:1.25;color:var(--color-blue)}.RotatingWord>*{grid-area:1/1}.RotatingWord__sizer{visibility:hidden;white-space:nowrap}.RotatingWord__mask{position:relative;overflow:hidden}.RotatingWord__word{position:absolute;left:0;top:0;white-space:nowrap;will-change:transform,opacity}.RotatingWord__word.is-entering{animation:RotatingWord-enter .45s cubic-bezier(.22,1,.36,1) both}.RotatingWord__word.is-leaving{animation:RotatingWord-leave .45s cubic-bezier(.22,1,.36,1) both}@media(prefers-reduced-motion:reduce){.RotatingWord__word.is-entering{animation:RotatingWord-fade .2s ease both}.RotatingWord__word.is-leaving{animation:none;opacity:0}}@keyframes RotatingWord-enter{0%{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes RotatingWord-leave{0%{transform:translateY(0);opacity:1}to{transform:translateY(-100%);opacity:0}}@keyframes RotatingWord-fade{0%{opacity:0}to{opacity:1}}