.c3-events {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -60px;
    margin-left: -60px;
}

.c3-event--empty {
    width: calc(100% - 60px);
    margin-top: 60px;
    margin-left: 60px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    line-height: 20px;
    text-align: center;
}

.c3-event {
    width: calc(25% - 60px);
    margin-top: 60px;
    margin-left: 60px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.c3-event__header-wrapper {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 87%;
}

.c3-event__thumbnail-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.c3-event__thumbnail-wrapper:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(210deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(210deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(210deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
    opacity: 0.75;
}

.c3-event__thumbnail-wrapper .c3-event__thumbnail {
    display: block;
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.c3-event__meta {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 2;
    padding-right: 15px;
    padding-left: 15px;
    background-color: #42934a;
    font-family: 'HandVetica', sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: #fff;
    text-align: center;
    line-height: 60px;
}

.c3-event__header {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 30px;
}

.c3-event__title {
    margin: 0;
    font-family: 'HandVetica', sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    line-height: 35px;
    text-transform: uppercase;
    hyphens: auto;
}

.c3-event__entry {
    padding: 30px;
}

.c3-event__content {
    font-family: 'Muli', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    line-height: 20px;
}

.c3-event__button-link {
    display: inline-block;
    border-radius: 4px;
    padding: 10px 20px;
    background-color: #42934a;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    line-height: 20px;
}

.c3-event__button-link:hover {
    color: #fff;
}

/*!*
 * Breakpoints
 */
@media (min-width: 1201px) and (max-width: 1400px) {
    .c3-event:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1400px) {
    .c3-event {
        width: calc(33.33% - 60px);
    }
}

@media (max-width: 1200px) {
    .c3-event {
        width: calc(50% - 60px);
    }
}

@media (max-width: 1024px) {
    .c3-event__meta {
        height: 35px;
        font-size: 25px;
        line-height: 35px;
    }

    .c3-event__title {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 767px) {
    .c3-events {
        margin-top: -20px;
        margin-left: -20px;
    }

    .c3-event {
        width: calc(100% - 20px);
        margin-top: 20px;
        margin-left: 20px;
    }
}