.mosaic-search-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}

.search-header {
	background: #ffffff;
	padding: 32px;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sh-title h3 {
	margin: 0 0 8px 0;
	font-size: 24px;
	color: #0f172a;
}

.sh-title p {
	margin: 0;
	font-size: 15px;
	color: #64748b;
}

.search-input-container input {
	width: 100%;
	box-sizing: border-box;
	background: #ffffff;
	border: 2px solid #cbd5e1;
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 16px;
	color: #0f172a;
	outline: none;
	transition: all 0.2s ease;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
	font-family: inherit;
}

.search-input-container input:focus {
	border-color: #8b5cf6;
	box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.search-grid {
	padding: 32px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.search-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	animation: fadeIn 0.3s ease;
}

.sc-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 16px;
}

.sc-header h4 {
	margin: 0;
	font-size: 18px;
	color: #0f172a;
	line-height: 1.3;
}

.sc-tag {
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.tag-blue {
	background: #eff6ff;
	color: #3b82f6;
}

.tag-purple {
	background: #f3e8ff;
	color: #8b5cf6;
}

.tag-green {
	background: #ecfdf5;
	color: #10b981;
}

.tag-orange {
	background: #fff7ed;
	color: #f97316;
}

.sc-body {
	margin: 0;
	font-size: 14px;
	color: #475569;
	line-height: 1.7;
}

.search-empty-state {
	display: none;
	text-align: center;
	padding: 60px 0;
	color: #64748b;
	font-size: 16px;
	font-style: italic;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}