/**
 * Services Grid Styles
 */

.angie-services-grid {
	display: grid;
	width: 100%;
}

.angie-service-item {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
}

.angie-service-image {
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.angie-service-image-link {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.angie-service-content-wrap {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.angie-service-title {
	margin: 0;
	line-height: 1.2;
}

.angie-service-title a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.angie-service-desc {
	margin: 0;
	line-height: 1.6;
}

.angie-service-button {
	display: inline-flex;
	align-items: center;
	margin-top: auto; /* Push to bottom if flex column */
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.angie-service-button i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.angie-service-button:hover {
	text-decoration: none;
}

.angie-service-button:hover i {
	transform: translateX(4px);
}
