.angie-corporate-team-grid-573 {
	display: flex;
	flex-direction: column;
}

.ctg-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
	transition: all 0.3s ease;
}

.ctg-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.ctg-image {
	flex: 0 0 200px;
	margin-right: 30px;
}

.ctg-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.ctg-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ctg-name {
	margin: 0 0 5px 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.ctg-name a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

.ctg-name a:hover {
	opacity: 0.8;
}

.ctg-role {
	font-size: 16px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.4;
}

.ctg-role strong {
	color: #333;
	font-weight: 600;
}

.ctg-bio {
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #ccc;
}

.ctg-read-more {
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	margin-left: 5px;
}

.ctg-read-more:hover {
	text-decoration: underline;
}

/* Inline Expand Styles */
.ctg-bio-full {
	display: none; /* Hidden by default */
}

.ctg-bio-summary {
	display: block;
}

/* When expanded state is active via JS */
.ctg-row.ctg-expanded .ctg-bio-full {
	display: block;
}
.ctg-row.ctg-expanded .ctg-bio-summary {
	display: none;
}

.ctg-toggle-bio {
	cursor: pointer;
	font-weight: 600;
	margin-left: 5px;
	color: #003366; /* Match link color */
}

.ctg-toggle-bio:hover {
	text-decoration: underline;
}

/* Contact Row */
.ctg-contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: center;
}

.ctg-contact {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.ctg-location {
	font-weight: 700;
}

.ctg-contact a {
	text-decoration: none;
	color: #003366;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s;
}

.ctg-contact a:hover {
	text-decoration: underline;
}

.ctg-email i {
	font-size: 1.1em;
}

/* Responsive Mobile */
@media (max-width: 767px) {
	.ctg-row {
		flex-direction: column;
		text-align: left;
	}

	.ctg-image {
		margin-right: 0;
		margin-bottom: 20px;
		width: 150px !important; /* Smaller on mobile */
		align-self: flex-start;
	}

	.ctg-contact-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
