/* ── WRAPPER ─────────────────────────────────────── */
.sqd-wrapper {
    padding: 20px;
    text-align: center;
}

/* ── QUOTE BOX ───────────────────────────────────── */
.sqd-quote {
    display: inline-block;
    max-width: 700px;
    line-height: 1.8;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* ── TEXT ────────────────────────────────────────── */
.sqd-text {
    display: block;
    font-style: italic;
    margin-bottom: 8px;
}

/* ── AUTHOR ──────────────────────────────────────── */
.sqd-author {
    display: block;
    font-size: 0.82em;
    opacity: 0.65;
    letter-spacing: 0.5px;
}

/* ── TYPEWRITER CURSOR ───────────────────────────── */
.sqd-text:not(.done)::after {
    content: '|';
    display: inline-block;
    opacity: 1;
    animation: sqd-blink 0.7s step-end infinite;
    margin-left: 2px;
    font-style: normal;
    font-weight: 300;
}

/* Ẩn cursor sau khi gõ xong */
.sqd-text.done::after {
    display: none;
}

@keyframes sqd-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── EMPTY STATE ─────────────────────────────────── */
.sqd-empty {
    color: #999;
    font-style: italic;
    text-align: center;
}
