.team-section {
	padding: 0 0;
}


.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.team-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-photo {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.team-card figcaption {
	position: absolute;
	left: 16px;
	bottom: 16px;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.team-card .name {
	margin: 0 0 4px 0;
	font-weight: 700;
	font-size: 1.25rem;
}

.team-card .role {
	margin: 0;
	font-size: 0.95rem;
}

.team-controls .btn-control {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--color-secondary);
	color: #fff;
	border: none;
}

.team-controls .btn-control:hover {
	background: var(--color-primary);
}

@media (max-width: 992px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.team-photo { height: 220px; }
}

@media (max-width: 576px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
	.team-photo { height: 200px; }
}


