.wh-cta-cards-list {
  display: grid;
  list-style: none;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr) 
}
@media(max-width: 1200px){
  .wh-columns-4 .wh-cta-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wh-cta-cards-list>.wh-prob-link {
  position: relative;
}
.wh-cta-cards-list>.wh-prob-link,
.wh-cta-cards-list>.wh-prob-link .wh-card-content-inner {
  height: 301px;
}
.wh-cta-cards-list>.wh-prob-link .wh-card-content, 
.wh-cta-cards-list>.wh-prob-link .wh-hdr {
  transition: transform .3s ease-in-out;
}
.wh-cta-cards-list>.wh-prob-link .wh-hdr {
  padding: 10px 0;
}
.wh-cta-cards-list>.wh-prob-link:hover .wh-hdr {
  padding: 20px 0 14px 0;
}
.wh-cta-cards-list>.wh-prob-link .wh-card-content {
  background-color: rgba(228, 124, 39, .9);
  background-blend-mode: multiply;
  transform: translateY(256px);
}
.wh-cta-cards-list>.wh-prob-link:hover .wh-card-content {
  transform: translateY(0px);
}
.wh-cta-cards-intro {
  padding: 0 35px;
  font-weight: 500;
}
.wh-card-content-inner {
  position: relative;
}
.wh-card-content-inner .wh-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}