/* Fixed review bar shared by every concept page. Not part of the designs. */
.switcher {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #f4f6f5;
  background: #0f1412;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
}

.switcher a {
  color: inherit;
  text-decoration: none;
}

.switcher__home {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.switcher__links {
  display: flex;
  gap: 6px;
}

.switcher__links a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #3c4642;
  border-radius: 50%;
  color: #c4ccc8;
  font-weight: 600;
}

.switcher__links a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.switcher__links a.is-active {
  border-color: #d8fb6f;
  color: #0f1412;
  background: #d8fb6f;
}

.switcher__name {
  min-width: 150px;
  color: #9aa5a0;
  text-align: right;
}

@media (max-width: 640px) {
  .switcher__name {
    display: none;
  }
}
