/* $font-main: 'Space Grotesk', serif; */
/* $font-main: 'Space Grotesk Fallback', serif; */
/* $font-mono: monospace; */
main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 1.5rem;
}

#content {
  width: 100%;
  max-width: 800px;
  padding: 0;
  border-radius: 20px;
}

@media (max-width: 580px) {
  main {
    padding: 1rem 0.75rem;
  }
}
@media (max-width: 500px) {
  .posts .top {
    flex-wrap: wrap;
  }
}
.preface {
  font-size: 1.2em;
  /* background: $alt-bg; */
  /* color: $alt-color-alt; */
  border-radius: 0.5rem;
  padding: 0 1.5rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.preface h1 {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: "DIN Next Slab Black", serif;
}

.posts {
  list-style-type: none;
}
.posts li {
  position: relative;
  background: light-dark(hsl(48, 24%, 90%), hsl(48, 1%, 8%));
  color: light-dark(hsl(48, 2%, 25%), hsl(48, 4%, 64%));
  transition: background-color 0.2s ease;
  border-radius: 0.5rem;
  padding: 1.2rem 1.5rem 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px light-dark(hsl(44, 30%, 23%), hsl(111, 10%, 8%));
}
.posts li.highlight {
  z-index: 20;
  box-shadow: 0 0 3px hsl(44, 100%, 60%);
  border: 1px solid hsl(44, 100%, 60%);
}
.posts li > .top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.posts li > .top > .info a {
  display: block;
  color: light-dark(hsl(48, 2%, 31%), hsl(48, 45%, 95%));
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.posts li > .top > .info a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}
.posts li > .top > .stats > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
}
.posts li > .top > .stats > div * {
  white-space: nowrap;
}
.posts li > .top > .stats > div img {
  width: 22px;
}
.posts li > .top > .stats > div p > img {
  transform: translateY(3px);
}
.posts li > .top > .stats > div :nth-child(2) {
  font-weight: bold;
}
.posts li > .top > .stats > div:not(.lang) img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(26%) saturate(1236%) hue-rotate(267deg) brightness(85%) contrast(92%);
}
.posts li > .quick-links {
  width: 100%;
}
.posts li > .quick-links:has(*) {
  margin-top: 1rem;
}
.posts li > .quick-links a {
  text-decoration: none;
  color: light-dark(hsl(120, 100%, 16%), hsl(152, 96%, 44%));
  transition: color 0.2s ease;
  font-size: 90%;
  margin-right: 1rem;
}
.posts li > .quick-links a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}

/*# sourceMappingURL=listing0.css.map */