.stretched-link::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
}

.callout.devsite {
  margin: 0;
  z-index: 1000;
}

.form-required::after {
  content: "*";
  color: #f00;
  font-weight: 900;
}

figure img,
.card img {
  width: 100%;
}

table img {
  width: initial;
}

.system_breadcrumb_block ol {
  list-style: none;      /* enlève la numérotation */
  padding: 0;
  margin: 0;
  display: flex;         /* affichage en ligne */
  gap: 0.5rem;           /* espace horizontal */
}

.system_breadcrumb_block ol li {
  display: flex;
  align-items: center;
}

/* Ajoute “>” devant tous les <li> sauf le premier */
.system_breadcrumb_block ol li + li::before {
  content: ">";
  margin: 0 0.5rem;
  color: #666;
}

