.top-link-section-in-footer {
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 0px;
  margin-bottom: 10px;
}
.top-link-section-in-footer p {
  margin: 0;
  padding: 0;
  flex: 1 0 40%;
}
.top-link-section-in-footer a {
  display: block;
  min-width: 145px;
  font-size: 15px;
  font-family: Konsole Expanded, system-ui, sans-serif;
  font-weight: 600;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 20px;
  margin-top: 0;
  transition: color 0.2s linear;
  margin-left: 0;
}
.top-link-section-in-footer a:hover {
  color: var(--theme-ui-colors-hoverLinkColor);
}

@media screen and (min-width: 768px) {
  .top-link-section-in-footer p {
    margin-right: 40px;
    flex: initial;
  }
  .top-link-section-in-footer a {
    min-width: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}