/* Torevya klavye yazma animasyonu */
.techin-hero-tag.tag3 .torevya-typing-text {
    display: inline-block;
    width: min(25ch, 68vw);
    min-height: 2.8em;
    line-height: 1.4;
    text-align: left;
    vertical-align: middle;
}

/* Yanıp sönen klavye imleci */
.techin-hero-tag.tag3 .torevya-typing-text::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1.05em;
    margin-left: 4px;
    background-color: currentColor;
    vertical-align: -0.14em;
    animation: torevyaCursorBlink 0.75s steps(1) infinite;
}

@keyframes torevyaCursorBlink {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .techin-hero-tag.tag3 .torevya-typing-text {
        width: min(22ch, calc(100vw - 115px));
        min-height: 2.8em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .techin-hero-tag.tag3 .torevya-typing-text::after {
        animation: none;
        opacity: 1;
    }
}