/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content Styling */
.text-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.text-content ul { margin-bottom: 1.25rem; padding-left: 1.5rem; list-style-type: disc; }
.text-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.text-content blockquote {
    border-left: 4px solid #b0493a;
    background-color: #fdf2f0;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    font-style: italic;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #451a03;
}
.email-ref {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 1rem;
    word-break: break-all;
}
.empty\:hidden:empty { display: none; }



