body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #eeeeee;
  flex: 1 0 auto;
}

.pageContent {
  flex-grow: 1;
}

section {
  clear: both;
}

section.topBanner {
  background-image: url("/img/news/bg.jpg");
  background-position-y: 30%;
  background-size: cover;
  height: 250px;
  color: white;
  text-align: center;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.topBanner div {
  align-items: center;
  display: flex;
  flex-direction: column;
}

section.topBanner div.topBannerHeader {
  font-size: 40px;
  text-transform: uppercase;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

section.newsContainer {
  padding: 20px;
}

section.newsContainer .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.newsItem {
  flex-grow: 1;
  width: 29%;
  background-color: white;
  display: flex;
  flex-direction: column;
  margin: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.newsImage {
  height: 300px;
  background-size: cover;
}

.newsBody {
  padding: 20px;
}

.newsTitle {
  font-size: 20px !important;
  margin-bottom: 15px !important;
}

.newsTitle a {
  color: #3f7dac !important;
}

.newsTitle a:hover {
  color: #3799ea !important;
}

@media (max-width: 800px) {
  section.topBanner {
    height: 150px;
  }

  section.topBanner div.topBannerHeader {
    font-size: 26px;
  }

  .newsItem {
    width: 100%;
    margin: 10px;
  }

  .newsImage {
    height: 300px;
    background-size: cover;
  }

  iframe {
    width: 100% !important;
  }
}

