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

.angie-service-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	height: 100%;
	box-sizing: border-box;
}

.angie-service-content-top {
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px; /* Consistent spacing between elements */
}

.angie-service-top-icon {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
	flex-shrink: 0; /* Prevent shrinking */
}

.angie-service-top-icon i {
	font-size: inherit;
}

.angie-service-title {
	font-family: 'Fraunces', serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0; /* Let flex gap handle spacing */
	transition: color 0.3s ease;
}

.angie-service-desc {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	margin: 0; /* Let flex gap handle spacing */
	transition: color 0.3s ease;
}

.angie-service-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto; /* Push to bottom */
	padding-top: 24px; /* Add some breathing room from content */
}

.angie-service-read-more {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.3s ease;
	margin-right: 12px; /* Ensure space between text and icon */
	white-space: nowrap; /* Prevent breaking if space is tight */
}

.angie-service-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	flex-shrink: 0; /* Prevent shrinking */
}

.angie-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.angie-service-icon i {
	font-size: inherit;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.angie-service-title {
		font-size: 17px;
	}
	
	.angie-service-desc {
		font-size: 13px;
	}
}

@media (max-width: 767px) {
	.angie-service-card {
		padding: 24px !important; /* Force smaller padding on mobile */
	}
	
	.angie-service-content-top {
		margin-bottom: 16px;
	}
}
