/* ==========================================================
   Sous-menu d'ancrage réutilisable (nuage flouté sur fond
   terracotta) — utilisé sur les pages de ressources
   (liens, vidéos, livres) et les pages de prestations.
   ========================================================== */
.ir-sommaire {
  position: relative;
  isolation: isolate;
  display: flex;
  width: fit-content;
  max-width: 92%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin: 0 auto 2rem;
  padding: .8rem 1.4rem;
}
.ir-sommaire::before {
  content: "";
  position: absolute;
  inset: -25% -4%;
  z-index: -1;
  border-radius: 999px;
  filter: blur(26px);
  background: radial-gradient(ellipse at center, rgba(90, 35, 20, 0.8) 0%, rgba(74, 27, 18, 0.55) 55%, rgba(74, 27, 18, 0) 100%);
}
.ir-sommaire a {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.ir-sommaire a:hover,
.ir-sommaire a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ir-sommaire span[aria-hidden] {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
}
