.box {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    background-color: #333;
    background-size: cover;
    position: relative;

    overflow: hidden;
}

.container {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    font-weight: 100;
    line-height: 1.6;
}

.reverse {
    align-items: flex-start;
    text-align: right;
}

.shadowContainer {
    background-image: linear-gradient(to bottom, rgba(43, 43, 41, 0), rgba(43, 43, 41, 0.78) 46%, #2b2b29);
}

.content {
    width: 100%;
    float: left;
    color: #fff;
}

.featured {
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
}
.featured::after {
    content: ' ';
    display: block;
    z-index: 1;
    border-color: transparent #EE4459;
	border-style: solid;
	border-width: 0px 0px 32px 32px;
	height: 0px;
    width: 0px;
}

.featured i {
    position: absolute;
    z-index: 2;
    left: 4px;
    top: 3px;
}

.contentBox {
    width: 100%;
    padding: 30px;
}