0
? "border border-[#ECA533]"
: "border border-[#EBEBEB]"
}`}
>
{/* Header Row: Avatar + Info + Rating */}
{/* Avatar with Status Dot */}
{advisor.avatar_url ? (
// eslint-disable-next-line @next/next/no-img-element

{
event.currentTarget.src = FALLBACK_AVATAR;
}}
/>
) : (
)}
{/* Status indicator dot badge (top-start) */}
{/* Consultant Info */}
{advisor.is_ai && (
AI
)}
{advisor.fullname ?? advisor.username}
{rating > 0 && (
)}
{advisor.slogan ?? ""}
{/* Contact Chips */}
{hasActiveContact && (
{hasChat && (
{t["Text Message"] || "Text Message"}
)}
{hasVoice && (
{t["Voice Call"] || "Voice Call"}
)}
{hasVideo && (
{t["Video Call"] || "Video Call"}
)}
)}
{/* Topics Badges */}
{topics.length > 0 && (
<>
{topics.map((topic) => (
{topic}
))}
>
)}