.restored-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 14px auto 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #dce4eb;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(18, 55, 97, .05);
}

.restored-nav a {
  padding: 9px 12px;
  color: #123761;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.restored-nav a:hover,
.restored-nav a:focus-visible {
  color: #fff;
  background: #118be8;
}

@media (max-width: 650px) {
  .restored-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-top: 10px;
  }

  .restored-nav a {
    min-width: 0;
    padding: 9px 8px;
    text-align: center;
    overflow-wrap: anywhere;
  }
}
