/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.news .container {
    padding: 4rem 0;
}

.news-tiles__item {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-shadow: 3px 3px 6px -1px rgba(185,187,182,0.80);
    box-shadow: 3px 3px 6px -1px rgba(185,187,182,0.80);
    background-color: #FFFFFF;
    width:100%;
    padding: 2rem;
    height: 100%;
}

.news-tiles__item__title {
    font-weight: 500;
    font-size: 22px;
    color: #043972;
    line-height: 1.4em;
    margin-bottom: 3rem;
}

.news-tiles__item__text {
    font-size: 20px;
    line-height: 1.4em;
    display: flex;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.news-tiles__item__more-btn {
    display: flex;
    align-items: flex-end;
}

.news-tiles__item__more-btn .more-btn {
    padding: 8px 14px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #0854A5;
    background-color: #FFFFFF;
}

.news-tiles .news-tiles__item .news-tiles__item__more-btn .more-btn:hover {
    border: 2px solid #0854A5;
    background-color: #043972;
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 767px){
    .news-tiles__item__title {
        min-height: 52px;
    }
    .news-tiles__item__text {
        min-height: auto;
    }
}

/*
 NEWS LIST
 */

.news-list__item {
    width: 100%;
    padding-top: 2rem;
}

.news-list__item:not(:last-child) {
   border-bottom: 1px solid #0854A5;
}

.news-list__item > div {
    margin-bottom: 1.5rem;
}

.news-list__item__content {
    display: flex;
    flex-direction: column;
}

.news-list__item__date {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 20px;
}

.news-list__item__title {
    text-align: left;
    text-transform: initial;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 26px;
}

.news-list__item__text {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 1rem;
}

.news-list h2.news-list__item__title {
    text-align: left;
    margin: 20px 0;
    padding-top: 18px;
    padding-bottom: 10px;
    font-size: 30px;
    color: #043972 ;
    line-height: 1.4em;
}
.news-list .news-list__item {
    border-bottom: 1px solid #94B1D3;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.news-list .news-list__item:last-child {
    border-bottom: none;
}

.news-list .news-list__item__image-wrap {
    position: relative;
}

.news-list .news-list__item__image-wrap .caption {
    position: absolute;
    bottom: 5px;
    left: 0;
    background: rgba(54,54,54,.8);
    padding: 5px 10px;
    color: #ffffff;
    font-size: 13px;
    z-index: 999;
    line-height: 17px;
}

.news-list .news-list__item__image-wrap img{
    width: 100vw;
}
@media only screen and (max-width: 767px){
    .news-tiles__item.row {
        margin-right: 0;
        padding-right: 0;
    }
    .news-list__item__content.col-12 {
        margin-right: 0;
        padding-right: 0;
    }
}

