#eventContent {
    width: 100%;
    height: 100%;
    display: block;
    padding: 6rem 0px;
}

#eventList {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.event-month {
    margin-bottom: 1rem;
}

.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 28rem;
    padding: 0.5rem;
}

@media (min-width: 480px) {
    .event-card {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .event-card {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .event-card {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1450px) {
    .event-card {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.event-card-details {
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    flex: 1;
    justify-content: space-between;
    z-index: 1;
}

.event-card-details > div > p {
    margin: 3rem 0 0 0;
}

.inset-half-rem {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
}

.event-card-image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.event-card-locations > p {
    font-size: 0.875rem;
    margin: 0;
}

.event-link {
    z-index: 2;
}

#eventBannerSection img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}