.posts-container
{
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(18rem , 1fr));
    gap: 1rem;
}


.post
{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
}


.post img
{
    width: 100%;
    height: auto;
    border-radius: .5rem;
}

.post-title
{
    margin-top: .5rem;
    font-size: 1.25rem;
}