.console-links-subnav {
  position: sticky;
  top: 65px;
  z-index: 40;
  border-bottom: 1px solid #343434;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(14px);
}

.console-links-inner {
  width: min(100%, 1500px);
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  margin: 0 auto;
  padding: 0 34px;
}

.console-link {
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #a6a6a6;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.console-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.console-link:hover,
.console-link:focus-visible {
  border-color: #343434;
  background: #202020;
  color: #ededed;
  outline: none;
}

@media (max-width: 900px) {
  .console-links-inner {
    padding: 0 18px;
  }
}
