.iw-typewriter {
    position: relative;
    min-height: 132px;
    margin-top: 27px;
    padding-right: 4px;
    color: #8d9198;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: .006em;
    text-wrap: pretty;
}

.iw-typewriter__text {
    white-space: pre-wrap;
}

.iw-typewriter.is-typing::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.05em;
    margin-left: 2px;
    vertical-align: -.12em;
    background: #c8a15b;
    box-shadow: 0 0 8px rgba(200, 161, 91, .22);
    animation: iwTypewriterCaret .82s steps(1, end) infinite;
}

.iw-typewriter.is-correcting::after {
    background: #e0bb75;
    box-shadow: 0 0 10px rgba(224, 187, 117, .3);
}

@keyframes iwTypewriterCaret {
    0%, 46% { opacity: .9; }
    47%, 100% { opacity: .12; }
}

@media (max-width: 720px) {
    .iw-typewriter {
        min-height: 118px;
        font-size: .72rem;
        line-height: 1.66;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iw-typewriter {
        min-height: auto;
    }

    .iw-typewriter::after {
        display: none !important;
        animation: none !important;
    }
}
