
.news-index-banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news-index-banner p {
  margin-bottom: 0;
}
.news-index-heading {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
}

@media only screen and (min-width: 992px) {
  @supports (grid-area: auto){
    .news-wrapper{
      display: grid;
      grid-template-columns: minmax(auto,3fr) minmax( 900px, 14fr) minmax(auto,3fr);
      grid-template-areas: " . news .";
    }
  }
  @media only screen and (min-width: 2080px){
    .news-wrapper{
      grid-template-columns: auto 1456px auto;
    }
  }
}

@supports not (grid-area: auto) {
  .news-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  @media only screen and (min-width: 992px){
    .news{
      border-radius: 5px;
    }
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .news-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  @media only screen and (min-width: 992px){
    .news{
      border-radius: 5px;
    }
  }
}

.news {
  display:flex;
  flex-direction: column
}
.news h2 {
  font-size: 0.9rem;
  margin: 0;
  font-weight: normal;
}
.news li a {
  color: #4F86A0;
}

