/* AI Consulting Pillar Widget Styles - Redesigned v4 (No Numbers) */

.angie-consulting-wrapper {
	font-family: inherit;
	max-width: 1400px;
	margin: 0 auto;
}

/* Header Section */
.angie-consulting-header {
	margin-bottom: 4rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.angie-eyebrow {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #BBA364; /* Accent */
}

.angie-main-headline {
	font-size: 3rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	font-weight: 700;
	color: #202C40; /* Primary */
}

.angie-intro-text {
	font-size: 1.15rem;
	line-height: 1.7;
	opacity: 0.8;
	color: #202C40;
}

/* Services Grid */
.angie-services-grid {
	display: grid;
	gap: 2rem;
	/* Grid columns handled by Elementor control */
}

/* Service Card */
.angie-service-card {
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.angie-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	border-color: #BBA364; /* Accent on hover */
}

/* Image Section */
.angie-service-image {
	width: 100%;
	height: 250px; /* Default overridden by control */
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
	order: 1; /* Move image to top visually */
}

.angie-service-card:hover .angie-service-image {
	transform: scale(1.05);
}

/* Header (No Number) */
.angie-service-header {
	padding: 2.5rem 2.5rem 1rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	order: 2;
}

.angie-service-title {
	font-size: 1.5rem;
	margin: 0;
	font-weight: 700;
	color: #202C40;
	line-height: 1.3;
	z-index: 1;
	position: relative;
}

/* Body Content */
.angie-service-body {
	padding: 0 2.5rem 2.5rem 2.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	order: 3;
}

.angie-service-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 2rem;
	flex-grow: 1;
}

/* Key Points */
.angie-key-points-wrapper {
	background: #FAFAFA;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #BBA364; /* Accent */
	margin-top: auto;
}

.angie-key-points-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #202C40;
	opacity: 0.6;
}

.angie-key-points ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.angie-key-points li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #444;
}

.angie-key-points li:last-child {
	margin-bottom: 0;
}

.angie-key-points li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: #BBA364; /* Accent */
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.angie-main-headline {
		font-size: 2.2rem;
	}
	
	.angie-service-header,
	.angie-service-body {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.angie-service-image {
		height: 200px !important;
	}
}
