img.event-image {
    width: 100%;
    object-fit: cover;
    /*width: 130px;*/
}

div.event-image-wrapper {
    overflow: hidden;
    max-height: 130px;
}


div.event-item div.row p.event-date {
    color: gray;
    font-size: 13px;
    margin-bottom: 0.2rem;
}

div#event-list {
    text-align: left;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    transition: height 0.2s linear;
}

div.event-item {
    margin-bottom: 20px;
    min-height: 150px;
}

div.event-item h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    color: hsl(330, 100%, 20%);
    margin-bottom: 5px;
}

div.event-item p {
    font-size: 14px;
}

div.event-item h4.event-title a {
    color: hsl(330, 100%, 20%);
}

button#see-more-button {
    font-size: 15px;
    z-index: 500;
    height: 40px;
    width: 120px;
    border: 1px solid #5c628e;
    color: #5c628e;
    margin-bottom: 0px;
    margin-top: 10px;
    border-radius: 2px;
    text-transform: uppercase;
}

/* styles for everything larger than mobile */

@media screen and (min-width: 40em) {

    div#fb-event-list {
        margin-top: 15px;
    }

    div#fb-event-list div.event-item div.event-image-wrapper {
        max-height: none;
    }

    div#fb-event-list div.event-item h4.event-title {
        font-size: 17px;
    }

    div#fb-event-list div.event-item p.event-date {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    div#fb-event-list div.event-item p.event-description {
        font-size: 15px;
    }

    div#fb-event-list div.event-item {
        margin-bottom: 30px;
    }

}

/* mobile only styles */
@media only screen and (max-width: 40em) {

    div#event-list {
        max-width: 90%;
    }

    div#event-list h4.event-title {
        margin-top: 10px;
    }

    div.event-item p.event-description {
        margin-bottom: 1.5rem;
    }

    div.event-item {
        min-height: 330px;
    }

    button#see-more-button {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}