.logo-text {
    position: relative;
    display: inline-block;
    vertical-align: bottom; /* Helps align the box properly on the line */
    min-height: 1.2em;      /* Ensures the span has height even when empty */
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -0.2em; /* Position to the right of the span */
    width: 4px;
    height: 80%; /* 80% of the span's height (which is at least 1.2em) */
    background: var(--accent-color);
    animation: blink 1s infinite;
}