/**
 * Sidebar
 *
 * Content for posts and publications sidebar.
 */
.sidebar {
  color: inherit;
}
.sidebar > *:last-child {
  margin-bottom: 0;
}
.sidebar a {
  color: inherit;
  text-decoration: none;
  
  &:active,
  &:focus,
  &:hover {
    color: var(--color-button-secondary-background);
    text-decoration: underline;
  }
}

.sidebar-heading {
  font-size: 112.5%;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 .5rem;
}
.sidebar-list {
  column-count: 2;
  column-gap: 30px;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
@media (min-width: 768px) {
  .sidebar-list {
    column-count: 1;
    margin-bottom: 2em;
  }
}

