/* NOTICIAS */


.listado_noticias img.imagen {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

.listado_noticias .containerimg {
  height: 200px;
  overflow: hidden;
}
.evento-destacado {
  background-color: #fff;
  padding: 24px 24px 0px 24px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap:20px;
  height:100%;
}
.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: var(--blue);
  font-family: FuturaMedium;
  font-size: 22px;
  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%;
  }
}