.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;
}
.media-avatar-container img {
    width: 100px;
}
.in-the-news-heading {
    border-bottom: 2.5px solid;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.in-the-news-container {
    background: var(--cream);
    width: 100%;
    max-width: 100%;
    padding: 80px 5%;
}
@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;
    }
}