/**
 * Home Steps shortcode styles.
 *
 * @package Kadence_Child
 */

.kc-home-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.kc-home-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 20px 16px;
	border-radius: 20px;
	text-align: center;
}

.kc-home-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: rgba(9, 26, 61, 0.12);
	color: var(--global-palette5, #2b2f3a);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.kc-home-step__icon {
	display: block;
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex-shrink: 0;
}

.kc-home-step__label {
	font-size: 14px;
	font-weight: 600;
	color: var(--global-palette5, #2b2f3a);
}

@media (max-width: 768px) {
	.kc-home-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.kc-home-steps {
		grid-template-columns: 1fr;
	}
}
