section#posts_in_home {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;

    /* display: none; */
}
article.post_in_home {
    width: calc(25% - 30px);
    max-width: 250px;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    padding: 15px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: #f7f6f5;
    outline: 1px solid #eee;
    outline-offset: -1px;
}
.post_in_home .the_post_thumbnail {
    aspect-ratio: 1/1;
    display: grid;
    position: relative;

    align-items: center;
    background-image: url(/wp-content/uploads/2025/03/adjoint-placeholder.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.post_in_home .the_post_thumbnail img {
    margin: auto;
    background-color: #fff;
}
.post_in_home .the_date {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #113069;
    color: #fff;

        /* background-color: #eee; */
        /* color: gray; */

    font-size: 12px;
    line-height: 20px;
    height: 20px;
    padding: 0 3px;

    transform: scale(0.7);
    transform-origin: 0 0;
}
.post_in_home h2.the_title {
    font-size: 18px;
    padding: 10px 0;
}
.post_in_home .the_content {}
.post_in_home a.the_permalink {
    display: block;
    background-color: #d3c183;
    padding: 3px 9px;
    margin-top: 10px;
}