.forensic-type-wrapper {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.type-effect-heading {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #d9534f; /* Червоний курсор-маркер */
    
    /* Анімація друку та миготіння курсору */
    animation: 
        forensicTyping 3s steps(45, end) forwards,
        cursorBlink 0.8s infinite;
}

@keyframes forensicTyping {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes cursorBlink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #d9534f; }
}