@charset "utf-8";

/******** mainImg ********/

.container-mainImg{
  border-bottom: none;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/news_bg.jpg) center left no-repeat;
  background-size: cover;
}
.news-header{
  color: rgba(255,255,255,0.8);
  display: block;
  font-family: 'Sanchez', serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
}
@media screen and (min-width:768px){
  .container-mainImg{
    height: 400px;
  }
  .news-header{
    font-size: 2rem;
  }
}
@media screen and (min-width:1240px){
  .news-header{
    font-size: 2.5rem;
  }
}

/******** article-news-summary ********/
.news-img, .media{
  width: 90%;
  margin: 0 auto 24px auto;
  line-height: 2;
}
.newsHeadline-3{
  color: #009da7;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.newsHeadline-4{
  background: #009da7;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.newsHeadline-5{
  font-size: 1rem;
  font-weight: 700;
}
.head-w-line{
  width: 100px;
  height: 100px;
  color: #fff;
  line-height: 95px;
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
  font-size: 2rem;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin: 2rem auto;
  display: block;
}
@media screen and (min-width:768px){
  .article-news-summary, .section-profile{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .news-img, .media{
    width: 45%;
  }
  .summary-text, .profile-text{
    width: 48%;
    line-height: 1.75;
  }
  .newsHeadline-3{
    font-size: 2.5rem;
  }
  .newsHeadline-4{
    font-size: 1.5rem;
  }
}

/******** profile ********/
.container-profile{
   background: #009da7;
}
.profile-text{
  color: #fff;
}
.profHeadline-4{
  background: #fff;
  color: #009da7;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width:768px){
  .profHeadline-4{
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .profile-sub{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .profile-sub-media{
    width: 45%;
  }
  .profile-sub-text{
    width: 48%;
    font-size: 0.8rem;
  }
}