.content {
  width: 100%;
  min-height: 80vh;
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
}

.content-left {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.all-posts {
  background-color: var(--highlight-color);
  color: var(--red);
  font-size: 14px;
  padding: 0.25rem;
  display: flex;
}

.posts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.posts .post {
  display: flex;
  flex-direction: column;
}

.posts .post h1 {
  font-size: 16px;
}
.posts .post p {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
