/* Site — boutons : non actif = blanc + contour ; actif = noir */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #303030;
  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: #f5f5f5;
  color: #303030;
  outline: none;
}

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

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