.news-container {
  margin-top: 61px;
  margin-bottom: 63px;
  background-color: #fff;
  border-radius: 12px;
  padding: 31px 50px 45px;
}

.news-container * {
  font-family: "Roboto";
}

.news-header {
  margin-bottom: 28px;
  text-align: center;
}

.news-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.news-post:first-child {
  margin-right: 38px;
  grid-column: 1/2;
  height: 100%;
  grid-row: 1/6;
  flex-direction: column;
  margin-bottom: 0;
}

.news-post:first-child img {
  height: 280px;
  max-width: 100%;
  margin-bottom: 17px;
  margin-right: 0;
}

.news-post:first-child h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.news-post:first-child span {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.news-post {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
}

.news-post img {
  height: 80px;
  min-width: 160px;
  max-width: 160px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.news-post h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.news-post h4,
.news-post .post-category,
.news-post .post-misc a {
  transition: color 0.2s ease;
}

.news-post h4:hover,
.news-post .post-category:hover,
.news-post .post-misc a:hover, 
#blank-page .news-post h4:hover,
#blank-page .news-post .post-category:hover,
#blank-page .news-post .post-misc a:hover {
  color: #e7792d;
}

.news-post .post-misc {
  display: flex;
}

.news-post .post-misc a,
#blank-page .news-post .post-misc a {
  color: #828282;
}

.news-post span,
#blank-page .news-post span {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  color: #828282;
}

.news-post span:not(:last-child) {
  margin-right: 8px;
  padding-right: 10px;
}

.news-post:first-child span:not(:last-child)::after {
  height: 13px;
}

.news-post span:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 12px;
  right: 0;
  top: 50%;
  width: 2px;
  transform: translateY(-50%);
  background: #828282;
  opacity: 0.7;
}

.news-post .post-excerpt {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-button-wrapper {
  margin-top: 39px;
  display: flex;
  justify-content: center;
}

.news-button-wrapper a {
  padding: 8px 25px;
}

@media screen and (max-width: 1000px) {
  .news-container {
      margin-top: 74px;
      margin-bottom: 76px;
      padding: 27px 16px 51px;
  }

  .news-header {
      margin-bottom: 26px;
  }

  .news-posts-wrapper {
      grid-template-columns: 1fr;
  }

  .news-post:first-child {
      margin-right: 0;
      padding-top: 0;
  }

  .news-post:first-child img {
      margin-bottom: 11px;
  }

  .news-post {
      border-bottom: 1px solid #ededed;
      padding-top: 13px;
      padding-bottom: 16px;
      margin-bottom: 0;
  }

  .news-post:first-child h4 {
      font-size: 18px;
      font-weight: 700;
      line-height: 20px;
      margin-bottom: 9px;
  }

  .news-post:first-child span {
      font-size: 14px;
      font-weight: 300;
      line-height: 16px;
  }

  .news-post:first-child .post-misc {
      margin-bottom: 11px;
  }

  .news-post h4 {
      font-size: 16px;
      font-weight: 500;
      line-height: 20px;
      margin-bottom: 4px;
  }

  .news-post span {
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
  }

  .news-post .post-excerpt {
      -webkit-line-clamp: 4;
  }

  .news-button-wrapper {
      margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .news-post:first-child img {
      height: 145px;
  }

  .news-post:not(:first-child) img {
      display: none;
  }

  .news-post span:not(:last-child)::after {
      width: 1px;
  }

  .news-post .post-excerpt {
      display: none;
  }

  .news-post:first-child .post-misc {
      margin-bottom: 0;
  }
}

/* Testimonials */

.testimonials-header {
  margin-top: 44px;
  margin-bottom: 32px;
}
