.community-container{
  margin-top: 150px;
}

.community-posts {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 5%;
  /* background-color: rgb(190, 175, 209); */
}

.community-posts img {
  max-width: 200px;
}

.community-posts li {
  display: flex;
  flex: 0 0 25%;
  margin-bottom: 2%;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 25%;
  /* background-color: lightblue; */
}
 
.community-posts a {
  text-decoration: none; 
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 1rem;
}

.community-post-detail {
  display: flex;
  flex-direction: row;
  justify-content: center; /* pushes title to left, price to right */
  align-items: center;
  gap: 1rem; /* optional spacing */
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1rem;
}

.community-title {
  white-space: nowrap;       /* Prevents the text from wrapping */
  overflow: hidden;          /* Hides the overflowed text */
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .community-posts {
    flex-direction: column;
    /* background-color: rgb(190, 175, 209); */
  }

  .community-posts li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10%;
  }

  .community-posts img {
    max-width: 60vw;
  }

}