.event-card {
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    transition: .5s;
    background-color: #f8f8f8;
    padding: 25px;
}

.event-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    row-gap: 20px;
    column-gap: 10px;
}

.event-button a {
    background-color: var(--blue);
    color: #fff !important;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    transition: .5s;
}

.event-button a:hover {
    background-color: var(--sky);
}

.event-featured-image {
    height: 100px;
    display: flex;
    align-items: center;
    grid-template-columns: 1fr;
    justify-content: center;
    margin-bottom: 25px;
}

.event-featured-image img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 120px;
}

.event-details ul {
    margin-bottom: 0;
}

.event-info,
.event-date {
    color: #454545;
    margin-top: 15px;
}

.event-info {
    font-weight: bold;
    font-size: 15px;
}

.event-date {
    position: relative;
    padding-left: 20px;
}

.event-date:before {
    content: '\e85b';
    font-family: 'entypo-fontello';
    position: absolute;
    left: 0;
    top: -2px;
}