/* ===== Leadership Team ===== */
.leadership-team {
	padding-block: 144px;
}

/* Encabezado */
.leadership-team__header {
	max-width: 900px;
	margin: 0 auto 96px;
	text-align: center;
}

.leadership-team__title {
	margin-bottom: 40px;
    font-family: 'Plaax 6 Ney Heavy';
    font-size: 64px;
    line-height: 0.935em;
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

.leadership-team__description {
	font-size: 16px;
	line-height: 1.5em;
	color: #333;
	padding-inline: 64px;
}

/* Grid */
.leadership-team__grid {
	/* max-width: 1280px;
	margin: 0 auto; */
	display: flex;
	flex-wrap: wrap;
	gap: 60px 0;
	/* vertical | horizontal */
	justify-content: center;
}

/* Miembro */
.leadership-team__member {
	flex: 1 1 25%;
	max-width: 25%;
	text-align: center;
}

/* Foto circular */
.leadership-team__photo {
	margin: 0 32px 32px;
	border-radius: 50%;
	overflow: hidden;
}

.leadership-team__photo img {
	aspect-ratio: 1 / 1;
	display: block;
}

/* Info */
.leadership-team__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.leadership-team__name,
.leadership-team__role {
	font-size: 28px;
	line-height: 0.937em;
	font-family: 'Plaax 6 ney Heavy';
	text-transform: uppercase;
	color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
	.leadership-team__title {
		font-size: 35px;
		line-height: 1.25em;
		margin-bottom: 24px;
	}

	.leadership-team__description {
		font-size: 16px;
		padding-inline: 24px;
	}

	.leadership-team__member {
		flex: 1 1 33.333%;
		max-width: 33.333%;
	}

	.leadership-team__name,
	.leadership-team__role {
		font-size: 24px;
		line-height: 1.25em;
		font-family: 'Plaax 6 ney Heavy';
		text-transform: uppercase;
		color: #000;
	}
}

@media (max-width: 768px) {
	.leadership-team {
		padding-block: 72px;
	}

	.leadership-team__header {
		margin-bottom: 48px;
	}

	.leadership-team__member {
		flex: 1 1 100%;
		max-width: 50%;
	}

	.leadership-team__photo {}
}

@media (max-width: 480px) {

	.leadership-team__photo {
		margin: 0 16px 16px;
	}

	.leadership-team__name,
	.leadership-team__role {
		font-size: 16px;
	}
}