:root {
  --brand: #1670FF;
  --sidebar-w: 320px;
  --gap: 1.5rem;
}

/* classes génériques */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Ajuste ces valeurs si nécessaire après test visuel */
  --h-header-mobile: 56px;
  /* ~ header avec py-2 */
  --h-search-mobile: 64px;
  /* ~ section search avec py-2 */
}

@media (max-width: 991.98px) {

  /* On pousse le contenu sous le header + la barre de recherche fixés */
  body {
    padding-top: calc(var(--h-header-mobile) + var(--h-search-mobile));
  }
}