.sport-switcher {
  display: flex;
  flex: 0 0 auto;
  gap: 7px;
  margin-left: auto;
}

.sport-switcher a {
  padding: 8px 10px;
  color: var(--muted-strong, #b6c0d2);
  border: 1px solid var(--line, #2a2f3a);
  border-radius: 9px;
  background: var(--panel-deep, #12151b);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.sport-switcher a:last-child {
  color: var(--gold-light, #f4cc62);
  border-color: rgba(233,181,38,.45);
  background: rgba(233,181,38,.06);
}

.sport-switcher a:hover {
  color: #17130a;
  border-color: var(--gold, #e9b526);
  background: var(--gold, #e9b526);
}

@media (max-width: 1020px) {
  .sport-switcher a:first-child {
    display: none;
  }
}

@media (max-width: 780px) {
  .sport-switcher {
    position: absolute;
    top: 12px;
    right: 17px;
  }

  .sport-switcher a {
    padding: 8px 9px;
  }
}
