.facetwp-template[data-name="event_listing"] .event-card{
    width: 100% !important;
    margin: 0 !important;
} 
.facetwp-template[data-name="event_listing"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
} 
@media (min-width: 768px) {
    .facetwp-template[data-name="event_listing"] .event-card{
        width: calc(50% - 15px) !important;
    }
} 
@media (min-width: 1251px) {
    .facetwp-template[data-name="event_listing"] .event-card{
        width: calc(33.33% - 20px) !important;
    }
}
.event-card {
    border: 1px solid #e5e5e5 !important;
    padding: 25px;
    background-color: #f8f8f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
    transition: .5s;
}
.event-card img {
    width: auto;
    height: auto;
    max-height: 125px;
    max-width: 200px;
}
.event-featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 125px;
    margin-bottom: 20px;
}
.event-title {
    font-size: 25px;
    margin-bottom: 3px;
}
.event-date {
    color: #666;
}
.event-location {
    font-weight: bold;
    margin: 6px 0 2px;
    font-size: 1.1em;
    display: block;
}
.event-des {
    font-size: 14px;
    margin-bottom: 5px;
}
a.event-link {
    display: block;
    margin-top: 15px;
}
.event-info {
    font-size: 15px;
}
.event-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0px 10px 10px 5px rgb(0 0 0 / 15%);
}