.singleNewsPage {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.singleNewsPage .center {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.singleNewsPage .newsBaner {
  display: grid;
  grid-auto-columns: 1fr 1fr;
}
.singleNewsPage .newsBaner .left {
  grid-column: 1;
  padding: 115px 24px 0px 120px;
  background: #F5F5F7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.singleNewsPage .newsBaner .left h2 {
  color: #2B2B2B;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 31px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 42px */
}
.singleNewsPage .newsBaner .left p, .singleNewsPage .newsBaner .left i {
  color: rgba(43, 43, 43, 0.7);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}
.singleNewsPage .newsBaner .image {
  grid-column: 2;
  height: 612px;
}
.singleNewsPage .newsBaner .image img {
  width: 100%;
  height: 100%;
}
.singleNewsPage .content {
  padding-top: 120px;
}
.singleNewsPage .content p {
  color: rgba(43, 43, 43, 0.7);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}
.singleNewsPage .content p b {
  color: #2B2B2B;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Playfair Display";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 36px */
  padding-top: 40px;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .singleNewsPage .center {
    max-width: 95%;
  }
  .singleNewsPage .newsBaner .left {
    padding: 40px;
  }
  .singleNewsPage .newsBaner .image {
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  .singleNewsPage .newsBaner .left {
    padding: 40px 20px;
  }
  .singleNewsPage .newsBaner .left h2 {
    font-size: 24px;
  }
  .singleNewsPage .newsBaner .image {
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .singleNewsPage .newsBaner {
    flex-direction: column;
    display: flex;
  }
  .singleNewsPage .newsBaner .left {
    padding: 20px 20px;
  }
  .singleNewsPage .newsBaner .left h2 {
    font-size: 24px;
  }
  .singleNewsPage .newsBaner .image {
    height: 100%;
    order: -1;
  }
  .singleNewsPage .content {
    padding: 20px 0px 60px 0px;
  }
}