/**
 * Home — Smart call commitments
 */

/* Smart call management */
.l1-smart-card {
	padding: 1.2rem 1.1rem 1.3rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--l1-line);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
	transition: transform 0.25s var(--l1-ease), box-shadow 0.25s;
}
.l1-smart-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}
.l1-smart-ico {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	margin-bottom: 0.85rem;
	background: rgba(15, 23, 42, 0.06);
	color: var(--l1-purple);
	font-size: 1rem;
}
.l1-smart-card h3 {
	margin: 0 0 0.4rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.l1-smart-card p {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--l1-muted);
}
