/*---------------------------------------------------------------------------- CSS BREADCRUMBS */
/* Masque le fil d’Ariane sur l’accueil */
.front-page .breadcrumbs,
.home .breadcrumbs {
  display: none !important;
}

.breadcrumbs {
  	position: relative;
  	text-align: left;
	padding: 8px 16px;
	font-family: var(--wp--preset--font-family--korolev, Korolev);
}

.breadcrumbs::before,
.breadcrumbs::after {
	content: "";
	display: block;
	height: 1px;
	background-color: var(--wp--preset--color--accent-2, #004eaa);
	width: 100%; /* toute la largeur de l'écran */
	position: absolute;
	left: 0;
}

.breadcrumbs::before {
  	top: 0;
}

.breadcrumbs::after {
  	bottom: 0;
}

..breadcrumbs a {
	color:  var(--wp--preset--color--custom-rose, #ff7e85);
	text-decoration: none;
	font-weight: 400 !important;
}

..breadcrumbs a:hover {
  	text-decoration: underline;
}