#newsHero{
    background-image: url('../img/pexels-brotin-biswas-518543.jpg');
}

#newsContainer{
    margin-top: 10vh;
}

.news-item{
    max-width: 800px;
    margin: 0 auto 5vh;
    padding-bottom: 5vh;
    border-bottom: 1px solid #ddd;
}

.news-item:last-child{
    border-bottom: none;
}

@media only screen and (max-width: 768px){
    .news-item{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.mosaic-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -0.5rem;
    list-style: none;
}

.mosaic-gallery li {
    background-position: top center;
    background-size: cover;
    flex: auto;
    height: 30vh;
    margin: 0 0.5rem 1rem;
    position: relative;
    display: list-item;
}

.mosaic-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

a.news-link{
    text-decoration: none;
}

a.news-link:after {
    content: "\f105";
    opacity: 0;
    transition: .2s all;
    text-decoration: none;
    font-family: 'FontAwesome';
}

a.news-link:hover:after {
    opacity: 1;
    padding-left: 5px;
    text-decoration: none;
    transition: .2s all;
}