/* NOTICIAS */
.evento-destacado {
  background-color: #f8f7f7;
  padding: 24px;
  border: 1px solid #e2e8eb;
  border-top-color: rgb(226, 232, 235);
  border-top-style: solid;
  border-top-width: 1px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.evento-destacado .imagen {
  width:100%;
  max-height: 300px;
  overflow: hidden;
}
.evento-destacado .imagen img {
  width:100%;
}
.evento-destacado .textos {
  width:100%;
}
.evento-destacado h2 a {
    color:#fe7c00;
    font-family: RusoOne;
    font-size: 26px;
    text-decoration: none;
}

@media only screen and (min-width: 992px) {
  .evento-destacado .imagen {
    width:100%;
    max-height: 300px;
    overflow: hidden;
  }
  .evento-destacado {
    flex-direction: row;
  }
  .evento-destacado .ficha {
    width:60%;
  }
}