#blog {
  display: flex;
  flex-direction: column;
  width: 50%;
}

#blog>h1 {
  font-family: "Plein-Variable", sans-serif;
  font-size: 2rem;
  margin: 0;
  padding: 0;
}

#blog>p {
  opacity: 80%;
}

#blog>ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

#posts-post {
  padding: 1rem 1.5rem;
  border-left: 3px solid gold;
  border-right: 3px solid gold;
  background: rgba(0, 0, 0, 0.03);
  transition: all 100ms ease;
}

#posts-post>h3 {
  font-family: "Plein-Variable", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: no-wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

#posts-post>h3>a {
  color: black;
  cursor: pointer;
}

#posts-post>p>span {
  font-weight: 600;
}

#posts-post>p {
  color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1100px) {
  #blog {
    width: 90%;
  }
}
