/* Site statique : aucune police distante, aucun domaine tiers.
   18px et 40rem sont des details d'affichage. 20 % d'ecart ne change
   rien pour un client : le texte reste lisible au pouce. */

:root {
  color-scheme: light;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  color: #121212;
  background: #f7f4ef;
  font-family: system-ui, sans-serif;
  line-height: 1.55;
}

a {
  color: #0b3d91;
}

a:focus {
  outline: 3px solid #0b3d91;
  outline-offset: 2px;
}

header,
main,
footer {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.avertissement {
  border: 2px solid #7a3b00;
  background: #fff4e5;
  padding: 0.9rem 1rem;
  margin: 0 0 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

th,
td {
  border: 1px solid #ccc;
  padding: 0.45rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

blockquote {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #7a3b00;
  background: #fff4e5;
}

#identite {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
}

#identite .ligne {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.4rem 0;
}

#identite dt {
  flex: 0 0 8rem;
  font-weight: 600;
}

#identite dd {
  flex: 1 1 12rem;
  margin: 0;
  overflow-wrap: anywhere;
}
