.formateurs h2 {
	text-align: left;
}

.formateurs h2::before {
	left: 0;
}

/* Glide.js styles de base */

.formateurs-glide {
	width: 100%;
	margin: 0 auto;
}

.formateur-item {
	width: 100%;
	height: 250px;
	position: relative;
}

.formateur-item-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	display: block;
}

.formateur-item-content {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 175px;
	transform: translateX(-50%);
	background: #fff;
	padding: 8px;
	text-align: center;
	z-index: 1;
	color: #414648;
	background: rgba(255, 255, 255, 0.9);
}

.formateur_glide__slide {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.formateur_glide__arrows {
	display: none;
}

.formateur_glide__bullets {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}

.formateur_glide__bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #e0e0e0;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.formateur_glide__bullet:focus {
	outline: 2px solid #0073e6;
}

.formateur_glide__bullet.formateur_glide__bullet--active {
	background: #0073e6;
}

.formateur-item-name {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.formateur-item .formateur-item-function {
	overflow: hidden;
	max-height: 0px;
	transition: max-height 0.3s ease-in-out;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 400;
}

.formateur-item:hover .formateur-item-function {
	max-height: 100px;
}

.formateur-item-img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	opacity: 0.25;
	z-index: 1;
}

.graduate .formateur-item-img:after {
	background: linear-gradient(
		to right,
		var(--second-graduate-color-primary),
		var(--second-graduate-color-secondary)
	);
}

@media (min-width: 1200px) {
	.formateur_glide__slides {
		display: flex;
		flex-wrap: nowrap;
	}
}
