/* NEWS-HOME */
section.py-5.news-home {
    padding-top: 1rem !important;
    padding-bottom: 7rem !important;
}
section.py-5.news-home > .container > h2 {
    margin-bottom: 3.5rem;
}
.news-list-view {
    display:grid;
    grid-template-columns: 1fr 1fr; /* 50% / 50% */
    gap:16px;
}
.news-list-view .news-list-item {
    position: relative;
    height: 100%;
}
.news-list-view .news-list-item > .col-md-3,
.news-list-view .news-list-item > .col-md-9 {
    width: 100%;
    float: none;
    flex: none;
    z-index: 3;
}
.news-list-view .news-list-item > .col-md-3 a {
    display: block;
    max-height: 100%;
    overflow: hidden;
	border-radius: 30px;
}
.news-list-view .news-list-item > .col-md-3 a img {
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    will-change: transform;  
    transition: transform .45s ease, filter .45s ease;
    filter: brightness(.97) contrast(1.02);
}
.news-list-view .news-list-item > .col-md-3 a img::after {
  content: "";
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at 50% 35%,
              rgba(255,255,255,.35) 0%,
              rgba(255,255,255,.18) 25%,
              rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  transform: scale(1.05);
}
.news-list-view .news-list-item > .col-md-3 a img.rollOver {
    transform: scale(1.06);
    filter: brightness(1.15) contrast(1.12);
}
.news-list-view .news-list-item > .col-md-3 a img.rollOver:after {
    opacity: .75;
    transform: scale(1);
}
.news-list-view .news-list-item > .col-md-9 .col-news-content-wrapper {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
	border-radius: 30px;
}
.news-list-view .news-list-item > .col-md-9 .col-news-content-wrapper h3 a {
    font-size: 1.75rem;
    line-height: 2rem;
}
.news-list-view .news-list-item > .col-md-9 .col-news-content-wrapper h3 a:hover {
	color: #f6c770 !important;
	text-decoration: none !important;
}
.news-list-view .news-list-item:nth-child(1){
  grid-column:1;
  grid-row:1 / span 2;
  /*min-height:460px;*/
}
.news-list-view .news-list-item:nth-child(1) > .col-md-3 a img {
    height: 100%;
}
.news-list-view .news-list-item:nth-child(2){
  grid-column:2;
  grid-row:1;
  min-height:232px;
}
.news-list-view .news-list-item:nth-child(3){
  grid-column:2;
  grid-row:2;
}
.news-list-view .news-list-item > .col-md-3 {
    width: 100%;
    float: none;
    flex: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.news-list-view .news-list-item > .col-md-9 a,
.news-list-view .news-list-item > .col-md-9 h3,
.news-list-view .news-list-item > .col-md-9 .extra,
.news-list-view .news-list-item > .col-md-9 p,
.news-list-view .news-list-item > .col-md-9 time {
    color: #fff;
    text-decoration: none;
}
.news-list-view .news-list-item > .col-md-9 h3 {
    margin: 0;
    margin-bottom: 1rem;
}
.news-list-view .news-list-item > .col-md-9 p {
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.news-list-view .news-list-item:nth-child(1) > .col-md-9 .col-news-content-wrapper {
    padding: 2rem 5rem 2rem 2rem;
}
.news-list-view .news-list-item:nth-child(2) > .col-md-9 .col-news-content-wrapper,
.news-list-view .news-list-item:nth-child(3) > .col-md-9 .col-news-content-wrapper,
.news-list-view .news-list-item:nth-child(2) > .col-md-3 a img,
.news-list-view .news-list-item:nth-child(3) > .col-md-3 a img {
    height: 231px;
}
.news-list-view .news-list-item:nth-child(2) > .col-md-9 .col-news-content-wrapper .lead,
.news-list-view .news-list-item:nth-child(3) > .col-md-9 .col-news-content-wrapper .lead {
    display: none;
}
.news-list-view .news-list-item .col-md-9 .col-news-content-wrapper a.btn-read-more {
    padding: 5px 8px;
    font-size: 18px;
    font-weight: normal;
    text-transform: capitalize;
    background: #0aaec4;
    margin-top: 5px;
    margin-bottom: -3px;
}
.news-list-view .news-list-item .col-md-9 .col-news-content-wrapper a.btn-read-more:hover {
	color: #ffffff !important;
    text-decoration: none !important;
}
.news-list-view .news-list-item .col-md-9 .col-news-content-wrapper a.btn-read-more i {
    color: #48aa43;
    font-size: 1.3rem;
    position: relative;
    top: 2px;
    left: -2px;
	display: none;
}
.news-list-view .news-list-item:nth-child(2) > .col-md-9 .col-news-content-wrapper h3,
.news-list-view .news-list-item:nth-child(3) > .col-md-9 .col-news-content-wrapper h3 {
    margin-bottom: 0px;
}
.news-list-view .news-list-item > .col-md-9 .col-news-content-wrapper h3 a:hover,
.news-list-view .news-list-item .col-md-9 .col-news-content-wrapper a.btn-read-more:hover span {
    text-decoration: underline;
}




/* SUB-PAGES */
.sub-page .news-list-view {
    grid-template-columns: none;
    display: block;
}
.sub-page .news-list-view .news-list-item {
    grid-row:auto !important; 
    grid-column: none !important;
    margin-bottom: 2rem;
}
.sub-page .news-list-view .news-list-item > .col-md-9,
.sub-page .news-list-view .news-list-item > .col-md-3 {
    padding-left: 0;
    padding-right: 0;
}
.sub-page .news-list-view .news-list-item > .col-md-3 a img {
    width: 100%;
}
