
#injected-quote-container {
    max-width: 650px;
    margin: 50px auto 70px auto;
    text-align: center !important; 
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


.unique-quote-text {
    
    font-family: 'Georgia', serif; 
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--ink); 
    
    
    opacity: 0;
    transform: translateY(25px);
    filter: blur(4px);
    animation: quoteCinematicReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


.unique-quote-separator {
    width: 0px;
    height: 1px;
    background-color: var(--ink);
    opacity: 0.3; 
    margin: 1.5rem auto;
    
    
    animation: quoteLineExpand 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
}


.unique-quote-meta {
    font-family: system-ui, -apple-system, sans-serif; 
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3); 
    opacity: 0;
    
    
    animation: quoteMetaFade 1s ease forwards;
    animation-delay: 1.1s;
}

.unique-quote-author {
    font-weight: 700;
    margin-right: 8px;
    color: var(--text-2); 
}

.unique-quote-source::before {
    content: "—";
    margin-right: 8px;
    opacity: 0.5;
}



@keyframes quoteCinematicReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes quoteLineExpand {
    from { width: 0px; }
    to { width: 50px; } 
}

@keyframes quoteMetaFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
    .unique-quote-text {
        font-size: 1.0rem;
    }
}