.news-page {
  width: calc(100% - 190px);
  margin: 0 auto; 
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  padding-right: 0;
}

.news-wrap {
  img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    margin: 1rem 0;
  }
  img:hover {
    box-shadow: 5px 5px #169B4A;
    transition: all 0.3s;
  }
  h2 {
    font-weight: 700;
  }
}

.new-news {
  padding-left: 3rem;

  h2 {
    margin: 1rem 0 !important;
    font-weight: 700;
  }
  .new-news-title {
    color: #000;
    font-size: 18px;
  }
  .new-news-title:hover {
    font-weight: 700;
  }
}