/* Custom styles for additional styling */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom scrollbar for comments */
.comments-scroll::-webkit-scrollbar {
    width: 6px;
}

.comments-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.comments-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.comments-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Prose styling for news content */
.prose {
    max-width: none;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.prose blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    font-style: italic;
    color: #4b5563;
    margin: 1.5rem 0;
}

/* Comment bubble styling */
.comment-bubble {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.comment-bubble::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f8fafc;
}

.comment-author {
    font-weight: 600;
    color: #1e40af;
    font-size: 0.875rem;
}

.comment-time {
    color: #6b7280;
    font-size: 0.75rem;
}

.comment-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 4px;
}
