.bloc-suivant {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	column-gap: 10%;
	margin-top: 20px;
	margin-bottom: 40px;
}

.bloc-suivant__container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	transition: transform 0.3s ease;
	cursor: pointer;

	svg{
		width: 25px
	}
	.cls-1{
		stroke:var(--wp--preset--color--light-gray);
	}
}

.bloc-suivant__arrow {
	width: 100%;
	height: 100%;
	color: currentColor;
}

.bloc-suivant .bloc-suivant__container:hover {
	transform: translateY(10px);

	.cls-1{
		stroke:var(--wp--preset--color--primary);
	}
}
