/* Earnspot Team — Process Steps widget styles
   Saare class names "eps-" prefix ke saath hain taaki theme/plugin ke
   kisi bhi existing CSS se conflict na ho. */

.eps-steps-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 20px;
	position: relative;
}

@media (max-width: 900px) {
	.eps-steps-row {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 560px) {
	.eps-steps-row {
		grid-template-columns: 1fr !important;
	}
}

.eps-step {
	background: #FFFFFF;
	border: 1px solid #E8C45A;
	border-radius: 18px;
	padding: 28px 22px;
	box-shadow: 0 8px 25px rgba(104, 13, 10, .08);
	position: relative;
}

.eps-step-num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #680D0A;
	color: #F5C542;
	display: grid;
	place-items: center;
	font-weight: 800;
	margin-bottom: 16px;
}

.eps-step h4 {
	margin: 0;
	font-size: 17px;
	color: #680D0A;
}

.eps-step p {
	margin: 8px 0 0;
	font-size: 14px;
	color: #3B2118;
	opacity: .8;
}

/* Scroll-in animation (optional, JS adds the "in" class) */
.eps-steps-row.eps-animate .eps-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease;
}

.eps-steps-row.eps-animate .eps-reveal.in {
	opacity: 1;
	transform: translateY(0);
}
