/* i am Eiva — Service Cards Grid (loop CPT) */

.eiva-services-wrap {
	width: 100%;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.eiva-services {
	--eiva-services-cols: 3;

	display: grid;
	grid-template-columns: repeat(var(--eiva-services-cols), minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}

.eiva-services .eiva-service {
	height: 100%;
}

.eiva-services__footer {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.eiva-services__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 32px;
	border-radius: 10px;
	background: #eecb68;
	color: #141d3c;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	border: 0;
	box-shadow: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.eiva-services__view-all:hover {
	background: #e4bf55;
	color: #141d3c;
	transform: translateY(-1px);
}
