.block-home-pillars {
  margin: 0;
  padding: 0;
  border-radius: 5px;
  height: 400px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.block-home-pillars .pillar {
  position: relative;
  width: calc( (100% - 3 * 10px) / 3);
}
.block-home-pillars .pillar > a.image {
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 3px;
  height: 100%;
  content: '';
  position: relative;
}
.block-home-pillars .pillar > a.image:hover::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background: rgba(30, 30, 30, 0.15);
  z-index: 2;
}
.block-home-pillars .pillar .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 10px;
  background-image: linear-gradient(to bottom, transparent, rgba(30, 30, 30, 0.3) 10px, rgba(30, 30, 30, 0.75) 40px);
}
.block-home-pillars .pillar .content h4 {
  padding-top: 0;
  margin-bottom: 0;
  text-align: left;
  display: block;
  color: #f5f5f5;
}
.block-home-pillars .pillar .content p {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .block-home-pillars {
    flex-wrap: wrap;
    height: auto;
  }
  .block-home-pillars .pillar {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }
}
