.dc-team__title {
	margin-bottom: 2.5rem;
}

.dc-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 3rem 1.5rem;
}

.dc-team__person {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.dc-team__person__region {
	line-height: 1;
	margin-top: .25rem;
	margin-bottom: auto;
}

.dc-team__person__image {
	width: 12rem;
	max-width: 85%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	margin-inline: auto;
	margin-bottom: 1.5rem;
    background: #00000008;
}
.dc-team__person__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dc-team__person__contacts {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
    font-style: normal;
}

@media (max-width: 767px) {
	.dc-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.dc-team__title span {
		font-size: .625em;
		opacity: 0.625;
	}
}