.boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.7em 1.6em;
  border: 2px solid transparent;
  border-radius: 999px;
  background-color: #174195;
  font-family: var(--police, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bouton:hover {
  border-color: #7da600;
}

.bouton:focus-visible {
  outline: 3px solid #7da600;
  outline-offset: 3px;
}

.bouton--clair {
  border-color: #174195;
  background-color: #ffffff;
  color: #174195;
}

.bouton--clair:hover {
  border-color: #7da600;
  background-color: #eef2fa;
}

.bouton__icone {
  flex: none;
  width: 1.4em;
  height: 1.4em;
}

.bouton__format {
  font-weight: 400;
  text-transform: none;
  opacity: 0.85;
}
