/* ====== PAGE - ACCUEIL / ACTIVITÉS ====== */

.bandeau_activites {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 15px;
}

.bloc_activite {
	text-align: center;
	transition: 0.3s;
}

.bloc_activite img {
	width: 100%;
	border-radius: 8px;
}

.bloc_activite:hover {
	transform: translateY(-6px);
}

/* ====== PAGE - ACTIVITÉS ====== */

.activites {
	margin-bottom : 15px;
}

.activites img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 15px;
	float: left;
	margin-right: 15px;
}