.angie-stakeholder-cards {
	display: grid;
	grid-template-rows: 1fr 1fr;
	height: 100%;
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.angie-card-link {
	padding: 36px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-decoration: none !important; /* Force removal of underline */
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.2s;
}

.angie-card-link:hover {
	text-decoration: none !important; /* Force removal of underline on hover */
}

.angie-card-link:last-child {
	border-bottom: none;
}

.angie-card-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.angie-card-title {
	font-family: "Fraunces", serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}

.angie-card-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin-bottom: 16px;
}

.angie-card-button {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 600;
	width: fit-content;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.angie-card-link {
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.angie-stakeholder-cards {
		height: auto;
		border-left: none; /* Remove left border on mobile if stacked */
		grid-template-rows: auto; /* Allow auto height */
	}
	
	.angie-card-link {
		padding: 24px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}
	
	.angie-card-link:last-child {
		border-bottom: none;
	}
}
