.recent_posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0px 20px 20px 20px;
    max-width: 900px;
    margin: 0px auto auto auto;
}

.recent {
    max-width: 940px;
    text-align: left;
    align-items: center;
    box-sizing: border-box;
    /*margin: 7rem 0 0 32.8rem;*/
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.post {
    display: grid;
    grid-template-rows: auto auto 1rem auto;  /* Автор, заголовок, контент, дата */
    gap: 1px;
    border: 1px solid #ddd;
    padding: 15px 15px 5px 15px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #f9fafb, #f4f6f6);
}

.post h2 {
    font-size: 20px;
    margin: 0 0 10px;
}

.post a {
    color: inherit;
    text-decoration: none;
}
.post p {
    font-size: 14px;
    color: var(--text-color);
}

.author p {
    font-size: 11px;
    margin: 0 0 10px;
}

.date p{
    font-size: 11px;
}

.date {
    grid-row: 4; 
    text-align: right;
    margin-top: 15px; 
    font-size: 11px;
}

.post h2:hover {
    color: rgb(95, 95, 95);
    transition-timing-function: ease-out;
    transition: 0.2s;
}

@media (max-width: 930px) {
    .recent_posts {
        grid-template-columns: repeat(1, 1fr);
    }

    .left_support_area p {
        margin-bottom: 1em;
    }

    .left_support_area {
        margin-top: 1em;
    }

}

@media (max-width: 350px) {
    .recent {
        padding: 0 1rem 0 1.4rem;
    }
}