.hover-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
}

.action-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 40px 30px;
	max-width: 400px;
	cursor: pointer;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.action-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	background: #0f172a;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.action-card:hover::before {
	width: 100%;
}

.action-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.action-card>* {
	position: relative;
	z-index: 1;
	transition: color 0.4s ease;
}

.action-icon {
	font-size: 32px;
	margin-bottom: 20px;
}

.action-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 12px 0;
}

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

.action-card:hover h3,
.action-card:hover p {
	color: #ffffff;
}