.blocoNoticias {
  grid-column: span 6;
  grid-row: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 39px;
  margin-bottom: 261px;
}
.blocoNoticias>article>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.blocoNoticias>article>a>.article-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blocoNoticias>article>a>.article-content>span {
  font-family: "RedHatDisplay-Bold";
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  color: #009640;
}
.blocoNoticias>article>a>.article-content>h2 {
  font-family: "RedHatDisplay-Regular";
  font-size: 28px;
  line-height: 32px;
  color: #ffffff;
}
.blocoNoticias>article>a>img {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
}
.blocoNoticias>.more-news-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  border: 2px solid #009640;
  border-radius: 43px;
  font-family: "RedHatDisplay-Bold";
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  color: #009640;
  cursor: pointer;
}
.blocoNoticias>.more-news-button:hover {
  background-color: #009640;
  color: #fff;
}

@media (max-width: 1024px) {
  .blocoNoticias {
    grid-column: 1/-1;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .blocoNoticias {
    grid-column: 1/-1;
    gap: 26px;
    margin-bottom: 110px;
  }
  .blocoNoticias>article>a {
    gap: 16px;
  }
  .blocoNoticias>article>a>.article-content {
    gap: 13px;
  }
  .blocoNoticias>article>a>.article-content>span {
    font-size: 14px;
    line-height: 18px;
  }
  .blocoNoticias>article>a>.article-content>h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .blocoNoticias>article>a>img {
    width: 120px;
    height: 88px;
    border-radius: 16px;
  }
  .blocoNoticias>.more-news-button {
    height: 50px;
    font-size: 16px;
    line-height: 21px;
  }
}