#header {
  flex-direction: column;
  align-items: center;
  border-bottom: 0;

}

h2 {
  font-size: 48px;
  padding: 0;
  margin-bottom: 0;
}

#posts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 0;
  justify-content: start;
}

.post {
  width: 400px;
  max-width: calc(100vw - 40px);
  border: 1px solid var(--gray);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  .body {
    padding: 10px 20px;
  }

  .post-tags {
    display: flex;
    gap: 10px;
    color: #999;
  }

  h3 {
    margin: 0;
  }

  img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
  }
}