.posts-container {
display: flex;
flex-direction: column;
gap: 1rem;
}
.post-card {
border: 1px solid #e0e0e0;
border-radius: 0.5rem;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
.post-title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.post-body {
font-size: 1rem;
color: #333;
}