.micro-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	padding: 40px 20px;
}

.micro-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	max-width: 350px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s ease;
}

.micro-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.micro-icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: inline-block;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.micro-card:hover .micro-icon {
	transform: scale(1.2) rotate(5deg);
}

.micro-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 0%;
	background: linear-gradient(90deg, #3b82f6, #a855f7);
	transition: width 0.4s ease;
}

.micro-card:hover::after {
	width: 100%;
}

.micro-card h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	color: #0f172a;
}

.micro-card p {
	margin: 0;
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
}