.team-profiles-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.75rem 1.5rem;
	align-items: stretch;
	width: 100%;
}

.team-profiles__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 260px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 16px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	height: 100%;
}

.team-profiles__image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
	width: 150px;
	height: 150px;
}

.team-profiles__photo,
.team-profiles__placeholder {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	display: block;
	overflow: hidden;
}

.team-profiles__photo {
	border: 4px solid #f5f7fb;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.team-profiles__placeholder {
	background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.team-profiles__name {
	font-size: 1.1rem;
	margin: 0 0 6px;
	color: #111827;
}

.team-profiles__role {
	margin: 0 0 8px;
	color: #4b5563;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
}

.team-profiles__qualifications {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
	color: #4b5563;
	font-size: 0.9rem;
	line-height: 1.4;
}

.team-profiles__qualifications li {
	margin: 0;
}

.team-profiles__blurb {
	margin: 0;
	color: #374151;
	font-size: 0.95rem;
	line-height: 1.6;
	width: 100%;
}

.team-profiles__item:focus-within,
.team-profiles__item:hover {
	border-color: #d1d5db;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
	.team-profiles__item {
		width: 100%;
	}
}
