.section-nav {
  width: 100%;
  padding-bottom: 16px;
  margin: 0 auto;
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid #9e9e9e;
  background: transparent;
  color: #9e9e9e;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-pill:hover,
.nav-pill:focus {
  border-color: #000;
  color: #000;
  text-decoration: none;
}
.nav-pill--active {
  border-color: #000;
  color: #000;
  font-weight: 500;
}