/* Gradient background effect for team images */
.team-block .image {
	position: relative;
	overflow: hidden;
	border-radius: 12px; /* Optional: rounded corners */
}

.team-block .image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,123,255,0.5) 0%, rgba(255,0,150,0.5) 100%);
	z-index: 1;
	pointer-events: none;
	transition: background 0.3s;
}

.team-block .image img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
