.research-card-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.research-card-column {
  display: flex;
  margin-bottom: 40px;
}

.research-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Keep both image areas identical */

.research-card .card-icon-wrap {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-card .card-icon-wrap img {
  width: 100%;
  max-width: 310px;
  max-height: 240px;
  object-fit: contain;
}

/* Keep heading areas identical */

.research-card h3 {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 18px;
}

/* Paragraph determines the required card height */

.research-card p {
  width: 100%;
  margin: 0;
  line-height: 1.55;
  text-align: left;
}

/* Buttons move to the bottom of the tallest card */

.research-card-actions {
  margin-top: auto;
  padding-top: 24px;
  width: 100%;
  position: static;
}

