/* Ensure all news boxes are equal height */
.np-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px; /* Adjust as needed */
  box-sizing: border-box;
}

/* Make image area consistent */
.np-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Ensure content fills remaining space */
.np-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}