#recent_article_container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 2rem 0;
    gap: 2rem;
}

.recent_article_column {
    /* padding: 0rem 3rem; */
    display: grid;
    grid-template-rows: 1fr;
}

.recent_article:not(:last-of-type) {
    padding-bottom: 2rem;
}

.recent_article_title {
    font-size: 18px;
    font-weight: bold;
}

.recent_article_info {
    color: gray;
    padding-top: 0.5rem;
    display: flex;
    /* gap: 1px; */
}