.list-item-wrapper {
	width: 100%;
	box-sizing: border-box;
	margin-top: 8px;
}

.list-item-card {
	display: flex;
	align-items: center;
	gap: 20px;

	background-color: #ffffff;
	padding: 20px 25px;
	border-radius: 20px;


	font-family: 'Arial', sans-serif;

	width: 100%;
	box-sizing: border-box;

	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

/* --- EFFECT HOVER --- */
.list-item-card:hover {
	transform: scale(1.03);

	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

	position: relative;
	z-index: 2;
}

.icon-check-wrapper {
	border: 2px solid #54a474;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;

	transition: background-color 0.3s ease;
}

.list-item-card:hover .icon-check-wrapper {
	background-color: #f0fdf4;
}

.list-text {
	font-family: Lexend, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
}

/* --- RESPONSIVE & MOBILE HORIZONTAL SCROLL --- */
@media (min-width: 768px) {
	.list-item-wrapper {
		margin-top: 16px;
	}
}
