.post-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .post-container {
        grid-template-columns: 1fr 1fr;
    }
}

.post {
    border-radius: var(--main-rounding);
    background-color: #282c35;

    display: block;

    align-items: center;
    
    animation: fadein 0.5s ease-in-out;
}

@keyframes fadein {
    from {opacity:0} 
    to {opacity:1}
}

.post .text {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 15px;
}

.post .title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem;
}

.post .description {
    margin-top: 5px;
    font-size: 0.9rem;
}

.post .image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.post .author-date {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #464d5e;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}