

.section_focus__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: clamp(14px, calc(14px + 6 * (calc(var(--vw, 1vw) * 100) - 576px) / 416), 20px);
	border-radius: 16px;
	background: #ffffff;
	backdrop-filter: blur(6px);
	transition: .3s;
	transform: scale(0.98);
	box-shadow: 0 0 10px rgba(194, 199, 248, 0.5);
}

	.section_focus__item.hover {
		opacity: 1;
		transform: scale(1);
		background: #fff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

	.section_focus__icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

	.section_focus__icon img {
		width: 100%;
		height: 100%;
	}

	.section_focus__item-title {
	font-weight: 600;
}

	.section_focus__item-text {
	font-size: 14px;
	color: #777;
}