.miniNewsFeedContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.miniNewsContainer {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0px;    
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0,0,0,.15);

}
.miniNewsTitle {
    color: #000;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: 1px;
    padding: 0;
    display: block;
    text-transform: none;
    background-color: transparent;
    text-align: center;
    grid-column: span 3; 
}
.miniNewsItemTitle {
    border-bottom: 0px;
    padding-bottom: 0;
    font-size: inherit;
    font-weight: normal;
    padding: 20px 20px 0px 20px;
}
.miniNewsItemTitle a:link {
    text-decoration: none;
    color: #000;
    font-size: 1.3125em;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
}
.miniNewsItemTitle a:hover { 
    text-decoration: none;
    color: #444444;
}
.miniNewsItem {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 20px;
    border-bottom: 0px solid #000;
    text-align: left;
    color: #000;
    grid-column: span 1;
}
.miniNewsItem a:link {
    text-decoration: none;
    color: #000;
}
.miniNewsItem a:hover {
    text-decoration: none;
    color: #444444;
}
.miniNewsDate {
    color: #444;
    font-size: 1em;
    padding: 20px;
}
.miniNewsViewAll {
    text-align: center;
    grid-column: span 3;
}
.miniNewsViewAll a:link, .miniNewsViewAll a:visited {
    background-color: #38781C;
    border: 0px;
    color: #fff;
    padding: 8px 20px;
    transition: .4s;
    text-decoration: none;
    font-size: 1em;
}
.miniNewsViewAll a:hover {
    opacity: .7;
    color: #fff;
    text-decoration: none;
}
.photo {
    width: 200px;
    height: 130px;
    overflow: hidden;
    overflow: clip;
    position: absolute;
    left: 40px;
}
.miniNewsViewAll {
    font-size: 1em;
    text-align: right;
}
.miniNewsViewAll a:link, .miniNewsViewAll a:visited {
    background-color: #325935;
}
.miniNewsItemTitle img {
    width: 100% !important;
    margin-bottom: 20px;
    height: auto !important;
    overflow: hidden;
    -webkit-background-size: cover !important;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
@media (max-width: 810px){
.miniNewsFeedContainer {
    display: flex;
    flex-direction: column;
}
}