/* fr-fr page extras */
.frfr-breadcrumb {
  margin-bottom: 20px;
}
.frfr-breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.frfr-breadcrumb ol li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--gold);
}
.frfr-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.frfr-breadcrumb a:hover {
  color: var(--gold);
}
.frfr-breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}
