.animated-quote {
    position: relative;
    padding: 0;
}

.animated-quote__content {
    font-size: 1.2em;
    line-height: 1.4;
}

.animated-quote__citation {
    display: block;
    margin-top: 1em;
    font-style: italic;
}

.animated-quote__content::after {
    content: '|';
    display: inline-block;
    animation: blink 0.7s infinite;
}

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