/* _variables.scss */
.posts .aside .categories {
  min-width: 260px;
  padding-top: 2em;
}
.posts .aside .categories .title {
  font-weight: 900;
}
.posts .aside .categories .category {
  padding: 0.3em 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.posts .aside .categories .category a {
  text-decoration: none;
  cursor: pointer;
  margin-right: 1em;
}
.posts .aside .categories .category .post-count {
  display: inline-block;
  text-align: center;
  color: #ffffff;
  min-width: 1.5em;
  background-color: var(--brand-color-1);
  border-radius: 4px;
}

@media screen and (min-width: 1370px) {
  .posts .container {
    display: flex;
    justify-content: center;
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .posts .container .excerpts-wrapper {
    max-width: 800px;
  }
  .posts .container .aside {
    max-width: 400px;
  }
  .posts .container .excerpts-wrapper, .posts .container .aside {
    padding: 2em;
  }
}
@media screen and (max-width: 1370px) {
  .posts {
    padding: 2em;
  }
  .posts .container {
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 780px) {
  .posts {
    padding: 1em;
  }
}
.excerpts a {
  color: var(--brand-color-1);
}

.posts .page:not(:last-child) {
  margin-right: 1em;
}