/* Papier-Look */
.single-post.typewriter-post .themify_builder_content .tb_text_wrap {

    background: #fdfaf3;
    padding: 60px 80px;
    max-width: 800px;
    margin: 40px auto;
    border: 1px solid #e6e2d3;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    font-family: 'Special Elite', monospace;
}

/* Schreibmaschinen-Textschatten */
.single-post.typewriter-post .post p {
    text-shadow: 0.5px 0.5px rgba(0,0,0,0.1);
}

/* Optional: Typewriter-Animation für Titel */
.single-post.typewriter-post .post-title {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #000;
    animation: typing 3s steps(40, end), blink .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: black }
}
