/* ARTICLE CARDS */
.article-card {
    position: relative;
    margin-bottom: 0 !important;
    padding: 50px;
    min-height: 300px;
}
.article-card .link-overlay {
    z-index: 200;
}
.article-cards-wrap {
    display: flex;
    flex-wrap: wrap;
}

.article-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    z-index: 400;
}
.article-card-content * {
    color: #fff;
}
.article-card-content .fas {
    text-align: center;
}
.article-card-label {
    text-transform: uppercase;
}
.article-card:after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    display: block;
    z-index: 100;
  position: absolute;
  transition: all .5s ease;
}
h2.article-card-headline {
    color: #fff;
}