.event-listing .facetwp-template {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.event-card {
    width: 100%;
}

@media (min-width: 641px) {
    .event-card {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1151px) {
    .event-card {
        width: calc(33.33% - 20px);
    }
}

.event-card {
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    text-align: center;
    transition: .5s;
background-color: #f8f8f8;
}

.event-card:hover {
    transform: translateY(-5px);
    background-color: #fff;
box-shadow: 0 6px 6px 3px #f4f4f4;
}
.event-card a {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.event-featured-image {
    height: 120px;
    display: flex;
    align-items: center;
    grid-template-columns: 1fr;
    justify-content: center;
}

.event-featured-image img {
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 120px;
}

h3.event-title {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 23px;
}

.event-info,
.event-date {
    color: var(--alt-color);
}

.event-info {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 8px;
}

.event-date {
    margin-top: 15px;
}