.meet-the-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	align-items: start;
}

.meet-the-team-grid__item {
	min-width: 0;
}

.meet-the-team-grid__image-link {
	display: block;
	text-decoration: none;
}

.meet-the-team-grid__image {
	display: block;
	width: 100%;
	height: auto;
}

.meet-the-team-grid__title {
	margin: 14px 0 0;
	font-size: clamp(1.25rem, 2vw, 2rem);
	line-height: 1.1;
	font-weight: 600;
}

.meet-the-team-grid__title a {
	color: inherit;
	text-decoration: none;
}

.meet-the-team-grid__title a:hover,
.meet-the-team-grid__title a:focus {
	text-decoration: underline;
}

.meet-the-team-block-editor {
	min-height: 120px;
}

@media (max-width: 781px) {
	.meet-the-team-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
