.newsGrid {
  width: 100%;
}
.ng__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 115px 0;
}
.ng__title {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 24px 0;
}
.ng__text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 80px 0;
}

.ng__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}
.ng__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.ng__post-title {
  display: inline-block;
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
  margin: 0 0 8px 0;
}
.ng__post-excerpt {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 150%;
  margin: 0 0 16px 0;
}
.ng__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ng__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.ng__author-name {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
.ng__author-role {
  color: #758da3;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 150%;
}

.ng__post-date {
  color: #758da3;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 150%;
  margin-top: 6px;
}

.ng__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  row-gap: 64px;
}
.ng__card-media img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 24px;
}
.ng__card .ng__post-title {
  font-size: 24px;
}

.ng__more {
  margin-top: 80px;
  text-align: center;
}
.ng__view-more {
  padding: 12px 24px;
  border-radius: 2px;
  background: #1d2939;
  color: #fff;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  border: 1px solid #1d2939;
}
.ng__view-more:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

@media (max-width: 900px) {
  .ng__featured {
    grid-template-columns: 1fr;
  }
  .ng__grid {
    grid-template-columns: 1fr;
  }
}
