/* Стили для секции team */
.team__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

/* Стили для карточки команды */
.team-item {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	overflow: hidden;
	background-color: var(--white);
	height: 100%;
}

.team-item__image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.team-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.team-item__content {
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.team-item__name {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
}

.team-item__text {
	line-height: 1.2;
	margin: 0;
}

.team-item__contacts {
	align-items: center;
}

@media (max-width: 768px) {
	.team-item__contacts {
		margin-left: 0;
	}
}