body {
  font-family: Poppins;
  padding: 10em;
  background: none;
  background-color: rgb(20, 20, 20);
}

#guides {
  width: 100%;
  max-width: 1024px;
  margin: auto;
  display: grid;
  font-size: 20px;
  grid-template-columns: 3fr auto 1fr;
  justify-items: stretch;
  gap: 2em;
}
#guides ul.posts {
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: rgb(255, 255, 255);
  justify-content: start;
  position: relative;
  min-height: 100vh;
}
#guides ul.posts li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-inline: 0;
  box-sizing: content-box;
  border-bottom: 1px solid rgba(128, 128, 128, 0.178);
  display: flex;
  width: 100%;
  height: auto;
}
#guides ul.posts li div {
  display: flex;
  gap: 0.5em;
  font-size: 0.5em;
}
#guides ul.posts li span, #guides ul.posts li button {
  background-color: rgb(32, 32, 32);
  border-radius: 1lh;
  padding: 0 1em;
  line-height: 2em;
  font-size: 0.6em;
  font-weight: 200;
  color: white;
}
#guides ul.posts li > a {
  box-sizing: content-box;
  width: 100%;
  min-height: 150px;
  margin: 0;
  padding: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition-duration: 0.2s;
}
#guides ul.posts li > a:hover {
  background-color: rgb(27, 27, 27);
}
#guides ul.posts li > a div {
  font-size: 0.75em;
}
#guides ul.posts :any-link {
  color: rgb(255, 255, 255);
}

ul.tags {
  display: flex;
  flex-wrap: wrap;
  color: white;
  font-size: 0.7em;
  font-weight: 300;
  gap: 0.25em;
  row-gap: 0.25em;
  padding-inline: 0;
}
ul.tags li {
  flex-grow: 1;
  flex-shrink: 1;
  background-color: rgb(26, 26, 26);
  padding: 0.5em 2em;
  border-radius: 1lh;
  list-style: none;
  text-align: center;
  cursor: pointer;
  color: white;
}
ul.tags li a {
  text-decoration: none;
  color: inherit;
  position: relative;
  left: -10px;
}
ul.tags li:hover {
  background-color: rgb(31, 31, 31);
}

vl {
  border-right: 1px solid rgba(128, 128, 128, 0.178);
  height: 100%;
  width: 2em;
}

.side {
  position: sticky;
  top: 100px;
}
.side h5 {
  margin: 0;
  margin-top: 3em;
  margin-bottom: 1em;
}

.side input {
  width: 100%;
  padding: 0 1em;
  line-height: 3em;
  font-size: 1em;
  border-radius: 1em;
  border: 2px solid gray;
}
.side input:active {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .side {
    grid-row: 1;
    position: static;
    font-size: 0.75em;
  }
  body {
    padding: 1em;
  }
  #guides {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    font-size: 0.75em;
  }
}

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