/* Make all cards equal height inside grid */
.grid {
  align-items: stretch; /* Ensures equal height */
}

.grid > a > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}