/*=========================================== RESET CSS ===========================================*/
/* ATTENTION ICI RESET CSS A SUPPRIMER SI IL EST DÉJÀ PRÉSENT DANS VOTRE PROJET */

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-position: inside;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture>img{
  width: 100%;
}

i,
em,
mark {
  font-style: italic;
}


a,
button,
i {
  cursor: pointer;
}

a,
button,
input,
select,
textarea {
  text-decoration: none;
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Keyboard focus indicator (WCAG 2.4.7 Focus Visible). Remove the default ring only for
   mouse/programmatic focus; keep a clear brand-purple ring for keyboard navigation. The old rule
   neutralised the outline for ALL focus with no replacement, leaving keyboard users no indicator. */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--primary_purple, #811df2);
  outline-offset: 2px;
}