.gruve-events {
    --ge-radius    : 14px;
    --ge-ease      : cubic-bezier(.25,.46,.45,.94);
    background : #F2F2EF;
    padding    : 60px 0px;
}
 
/* Card */
.ge-card {
    background    : #fff;
    border-radius : 16px;
    border        : 1px solid #f7f7f7;
    overflow      : hidden;
    display       : flex;
    flex-direction: column;
    transition    : transform .28s var(--ge-ease), box-shadow .28s var(--ge-ease);
    height        : 100%;
}
 
.ge-card:hover {
    transform : translateY(-5px);
    box-shadow: 0 16px 48px rgba(6,45,31,.13);
}
 
.ge-card__img-wrap {
    position    : relative;
    width       : 100%;
    aspect-ratio: 16/9;
    overflow    : hidden;
    background  : #d0d0ca;
}
 
.ge-card__img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    display   : block;
    transition: transform .45s var(--ge-ease);
}
 
.ge-card:hover .ge-card__img { transform: scale(1.04); }
 
.ge-card__img-placeholder {
    width           : 100%;
    height          : 100%;
    background      : linear-gradient(135deg,#21A55E 0%,#054428 100%);
    display         : flex;
    align-items     : center;
    justify-content : center;
}
 
.ge-card__body {
    padding: 22px 22px 10px;
    flex   : 1;
}
 
.ge-card__title {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
 
.ge-card__date {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.045px;
    margin-bottom: 20px;
}
 
.ge-card__location {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
    letter-spacing: 0.045px;
    display: flex;
    align-items: center;
    gap: 5px;
}

p.ge-card__location img {
    height: 20px;
    width: auto !important;
}
 
.ge-card__footer {
    padding: 0px 22px 22px;
    /* border-top: 1px solid var(--ge-border); */
    margin-top: 18px;
}
 
.ge-card__link {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    display        : inline-flex;
    align-items    : center;
    gap            : 6px;
    transition     : color .2s, gap .2s;
}
 
.ge-card__link:hover { color: var(--ge-green); gap: 10px; }
 
/* Owl overrides */
.gruve-events .owl-carousel .owl-item { padding: 4px 10px 6px; }
 
.gruve-events .owl-nav {
    display        : flex;
    justify-content: flex-end;
    gap            : 10px;
    margin-top     : 28px;
    margin-right   : 10px;
}
 
.gruve-events .owl-nav button {
    width          : 44px !important;
    height         : 44px !important;
    border-radius  : 50% !important;
    border         : 2px solid var(--ge-green) !important;
    background     : transparent !important;
    display        : flex !important;
    align-items    : center !important;
    justify-content: center !important;
    transition     : background .2s !important;
    padding        : 0 !important;
}
 
.gruve-events .owl-nav button:hover {
    background: var(--ge-green) !important;
}
 
.gruve-events .owl-nav button svg { pointer-events: none; }
.gruve-events .owl-nav button span { display: none !important; }
.gruve-events .owl-dots { display: none; }