/* Site — boutons : défaut = gris ; hover = gris plus clair */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 14px;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #1f1f1f;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn__icon {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
  background: #e4e4e4;
  color: #1f1f1f;
  outline: none;
}

.btn.is-active,
.btn[aria-current="page"] {
  background: #1a1a1a;
  color: #ffffff;
}

.btn--orange {
  background: #ff8800;
  color: #ffffff;
}

.btn--orange:hover,
.btn--orange:focus-visible {
  background: #e67a00;
  color: #ffffff;
  outline: none;
}

.header__nav-link.is-active,
.header__nav-link[aria-current="page"] {
  background: #666666;
  color: #ffffff;
  border-radius: 8px;
  padding: 5px 8px;
}
