/* ========================================
   TEAM CONTACT INFORMATION STYLES
   Styles for team-email and team-phone classes
   ======================================== */

/* Team Email Styling */
.team-email {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	font-family: 'Quattrocento Sans', sans-serif;
	line-height: 1.4;
}

.team-email::before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #4a90a4;
	font-size: 14px;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

.team-email a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.team-email a:hover {
	color: #295490;
	text-decoration: underline;
}

/* Team Phone Styling */
.team-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	font-family: 'Quattrocento Sans', sans-serif;
	line-height: 1.4;
}

.team-phone::before {
	content: "\f232";
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
	color: #25D366;
	font-size: 14px;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

.team-phone a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.team-phone a:hover {
	color: #25D366;
	text-decoration: underline;
}

/* Alternative styling without icons (if Font Awesome is not available) */
.team-email.no-icon,
.team-phone.no-icon {
	padding-left: 0;
}

.team-email.no-icon::before,
.team-phone.no-icon::before {
	display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.team-email,
	.team-phone {
		font-size: 13px;
		gap: 6px;
	}
	
	.team-email::before {
		font-size: 13px;
		width: 14px;
	}
	
	.team-phone::before {
		font-size: 13px;
		width: 14px;
	}
}

@media (max-width: 480px) {
	.team-email,
	.team-phone {
		font-size: 12px;
		margin-bottom: 6px;
	}
	
	.team-email::before {
		font-size: 12px;
		width: 12px;
	}
	
	.team-phone::before {
		font-size: 12px;
		width: 12px;
	}
}

/* Enhanced styling for better visual hierarchy */
.team-member .team-email,
.team-member .team-phone {
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.team-member:hover .team-email,
.team-member:hover .team-phone {
	opacity: 1;
}

/* Clean variant without background */
.team-email.clean,
.team-phone.clean {
	background: none;
	border: none;
	padding: 0;
}

/* Compact variant for smaller spaces */
.team-email.compact,
.team-phone.compact {
	font-size: 12px;
	margin-bottom: 4px;
	gap: 6px;
}

.team-email.compact::before {
	font-size: 12px;
	width: 12px;
}

.team-phone.compact::before {
	font-size: 12px;
	width: 12px;
}