.team-card {
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 2.5rem;
}

.team-card__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-card__image {
	width: 150px;
	height: 150px;
	object-fit: contain;
	display: block;
	margin-bottom: 0.625rem!important;
}

.team-card__placeholder {
	width: 150px;
	height: 150px;
	background-color: #ccc;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 0.875rem;
}

.team-card__name {
	padding: 0.3125rem 1.875rem;
	border: 1px solid #fff;
	display: inline-block;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.2;
	white-space: nowrap;
}


@media screen and (max-width: 768px) {
	.team-card__image {
		margin-bottom: 0.5rem!important;
	}
	.team-card__name {
		font-size: 1.125rem;
	}
}