.in-the-news-post {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--lightGrey);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.in-the-news-post .media-avatar-container {
    flex: 1;
}
.in-the-news-post .text-content {
    flex: 2;
}
.in-the-news-post .entry-title {
    line-height: 1em;
}
.media-avatar-container img {
    width: 100px;
}
.article-meta-container {
    display: flex;
    font-size: var(--tinyText);
    color: var(--armyGreen);
    text-transform: uppercase;
}
.article-meta-container .org-name {
    margin-right: 10px;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .in-the-news-post .text-content {
        flex: 4;
    }
}
@media only screen and (min-width: 981px) {
    .in-the-news-post {
        padding-right: 80px;
    }
    .in-the-news-post .text-content {
        flex: 6;
    }
}