/* ============================================================
   TIMTIM Animations — cursor, split text, typewriter
   ============================================================ */

/* ── Split text (.tt-split) ─────────────────────────────────── */

.tt-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.tt-word-inner {
    display: inline-block;
}

/* ── Typewriter (.tt-typewrite) ─────────────────────────────── */

.tt-typewrite::after {
    content: '|';
    margin-left: 1px;
    animation: tt-blink 0.65s step-end infinite;
}

.tt-typewrite.tt-done::after {
    display: none;
}

@keyframes tt-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

