.contenidoNoticias {
    background-color: hsl(211, 61%, 86%, 0.8);
    color: #333;
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
    bottom: 0;
    padding-top: 150px;
    padding-bottom: 20px;
}

.contenidoNoticias h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 5vw, 45px);
  color: #e24a4a;
  text-align: center;
  display: inline-block;
  text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000,
    1px 1px 1px #000, 2px 2px 4px #000;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.noticia {
  background-color: #FBE9E7;
  width: 80%;
  padding: 20px;
  display: inline-flex;
  align-items: flex-start;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

.noticia img, .noticia video {
  width: 30%;
  max-height: 400px;
  max-width: 300px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  border: 2px solid #FF8A65;
}

.noticiaTexto {
  width: 65%;
}

.noticiaTexto h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  color: #2071a7f2;
  border-bottom: #2071a7f2 1px solid;
  display: inline;
  text-align: left;
  margin-bottom: 20px;
}

.noticiaTexto h6 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #bb4949;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
}

.noticiaTexto p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #bb4949;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Responsive */

@media (max-width: 700px) {
  .contenidoNoticias {
    padding-top: 110px;
  }

  .noticia {
    flex-direction: column;
    align-items: center;
  }

  .noticia img, .noticia video {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .noticiaTexto {
    width: 100%;
  }
}