.view-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
  font-size: 1.25rem;
}

.view-toggle-label {
  font-weight: 700;
  color: #333;
}

.view-toggle a {
  display: inline-block;
  padding: 10px 20px;
  background: #f3f5f7;
  border: 2px solid #5387ce;
  border-radius: 8px;
  color: #5387ce;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
}

.view-toggle a:hover {
  background: #5387ce;
  color: #fff;
  transform: translateY(-2px);
}

.view-toggle a.active {
  background: #5387ce;
  color: #fff;
  cursor: default;
}

.view-toggle a.active:hover {
  transform: none;
}