/* == Image Link Block Styles == */
.imageLink__col{
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.imageLink__imageWrapper{
  border-radius: var(--Standard-border-radius);
  background-size: cover;
  background-position: center;
  padding: 25px;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.imageLink__imageWrapper::after{
  content: '';
  background-color: var(--FC-dark-blue);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 50%;
  border-radius: var(--Standard-border-radius);
}

.imageLink__contentWrapper{
  padding-top: 150px;
}

.imageLink__title,
.imageLink__copy {
  color: #fff;
  position: relative;
  z-index: 2;
}