.c-industry-blocks {
  margin-bottom: $spacing-unit-large;
}

.c-industry-block {
  padding: $spacing-unit;
  margin-bottom: $spacing-unit-xsmall;
  width: 100%; //Always fill 100% of the width available.
  background-color: #5d7991;
  color: palette(white);
  display: flex;
  flex: 1 0 auto; //Fix for un-equal tiles
  flex-direction: column;
  transition: background .2s ease, color .2s ease;

  &.is-active,
  &:hover,
  &:focus {
    text-decoration: none;
    color: palette(black);
    background-color: palette(gray, lightest);
  }
}

.c-industry-block__icon {
  width: $spacing-unit * 3;
  height: $spacing-unit * 3;
  margin-left: auto;
  margin-right: auto;
}

.c-industry-block__text {
  @include font-size(small);
  margin-top: auto;
  margin-bottom: auto;
}