/**
 * @file
 * Cantinho theme — style globaux minimaux.
 *
 * La vraie typographie + couleurs viennent de ocdm-v7.css (cf. library
 * cantinho/ocdm-design). Ici on ne fait que les fallbacks pour les cas
 * où ocdm-v7 ne couvre pas le markup (admin Drupal, contextual links…).
 */

body {
  font-family: var(--ocdm-font-body, "Nunito Sans", system-ui, sans-serif);
  color: var(--ocdm-text);
}

a {
  color: var(--ocdm-link);
}

a:hover {
  color: var(--ocdm-link-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ocdm-font-display, "Fraunces", Georgia, serif);
  color: var(--ocdm-text-strong);
}

/* Utilitaire de masquage accessible. */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
