#noticias-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* espacio entre cards */
  justify-content: center;
}
  /* Ajustes de columnas si no usás Bootstrap */
#noticias-container > div {
  flex: 0 0 300px; /* ancho fijo */
}

/* Card con altura fija */
.card.h-100 {
  height: 420px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* Imagen con altura fija */
.card-img-top {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

/* Body que toma el resto del espacio */
.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Título */
.card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #193B69;
}

/* Link con fecha */
.card-body a {
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
}

.card-body a:hover {
  color: #193B69;
  text-decoration: underline;
}