/* Technology Toolkit Widget Styles */

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

/* Header Section */
.angie-tech-header {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #EBF0F2;
}

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

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

.angie-intro-text {
	font-size: 1.15rem;
	line-height: 1.7;
	max-width: 900px;
	opacity: 0.9;
	color: #202C40;
}

/* Grid Layout */
.angie-tech-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 3rem;
	/* Grid columns handled by Elementor responsive control */
}

/* Card Styles */
.angie-tech-card {
	background: #EBF0F2; /* Theme Secondary Gray */
	border: 1px solid #EBF0F2;
	padding: 2rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.angie-tech-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.06);
	/* Border color set by control via JS/CSS var */
}

.angie-card-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 1rem;
}

.angie-category-number {
	font-size: 2.5rem;
	font-weight: 700;
	opacity: 0.1;
	line-height: 1;
	color: #202C40;
}

.angie-category-name {
	font-size: 1.3rem;
	margin: 0 0 1rem 0;
	font-weight: 700;
	position: relative;
	padding-bottom: 0.75rem;
	color: #202C40;
}

/* Decorative underline for title */
.angie-category-name:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #BBA364; /* Default accent, overridden by control */
}

.angie-tools-list {
	flex-grow: 1;
	font-size: 0.95rem;
	line-height: 1.6;
	opacity: 0.85;
	color: #202C40;
}

/* Footer Section */
.angie-tech-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #EBF0F2;
}

.angie-additional-description {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 900px;
	opacity: 0.9;
	color: #202C40;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.angie-main-headline {
		font-size: 2.2rem;
	}
	
	.angie-tech-card {
		padding: 1.5rem;
	}
	
	.angie-tech-header {
		margin-bottom: 2rem;
	}
}
