.tc-dd158743-card {
	background: #f8fafc; /* Darker background */
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	font-family: inherit;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tc-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.tc-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.tc-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tc-name {
	font-weight: 700;
	font-size: 18px;
	color: #1e3a8a; /* Default deep blue from design */
}

.tc-position, .tc-company {
	font-size: 14px;
	color: #64748b;
}

.tc-divider {
	height: 1px;
	background: #e2e8f0;
	margin: 16px 0;
	width: 100%;
}

.tc-content-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tc-content-text {
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 12px;
	
	/* Default truncate settings (overridden by controls) */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all 0.3s ease;
}

.tc-content-text.expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.tc-toggle-btn {
	background: transparent;
	border: none;
	padding: 0;
	font-weight: 700;
	font-size: 15px;
	color: #334155;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tc-toggle-btn:hover {
	color: #0f172a;
}
