.lve-events-list {
    display:flex;
    flex-direction: column;
    gap: 28px;
}

.lve-event-item {
    flex-basis: 100%;
    min-height:0;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 2.5em;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio:1.16;
}
.extra-spacer {
    width:16px;
    display:inline-block;
}
#lve-events-block-header {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
#lve-events-block-header h2 {
    display:inline-block;
    font-family: "Roboto Condensed";
    margin:0;
}
#lve-events-block-header > div {
    width:50%;
    text-align:right;
}
@media screen and (min-width:768px){
    .lve-event-item {
        flex-basis: calc(50% - 14px);
    }
    .lve-events-list {
        flex-wrap:wrap;
        flex-direction: row;
    }
}
.lve-event-item p {
    margin: 0.2em 0;
    padding-right:20%;
}
.lve-event-item .wp-block-cover__inner-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.lve-event-item .wp-block-cover__inner-container .event-title {
    font-family:"Roboto Condensed";
    font-weight:800;
    color:#FFF;
    text-align:left;
    line-height:1.1;
}
.lve-event-item .wp-block-cover__inner-container .event-date {
    color:#FFF;
    font-family:"Roboto";
    font-weight:800;
    line-height:1.1;
}
.lve-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%; /* or tweak to something like 60% if you only want lower portion */
    background: 
        linear-gradient(180deg, rgba(3, 7, 23, 0.00) 0%, rgba(117, 44, 144, 0.30) 46.15%, #FF365D 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.filters {
    display:flex;
    flex-direction: row;
    gap:10px;
    justify-content: flex-end;
    height:56px;
    max-height:56px;
}
.filters .filter-object {
    border-radius:12px;
    color:#FFF;
    position:relative;
}
.filters .filter-object .default {
    background-color:rgba(40, 23, 53, 0.80);
    border:1px solid #FFF;
    padding:16px 26px;
    border-radius:12px;
    color:#FFF;
    z-index:1;
    position:relative;
    cursor:pointer;
}
.filters .filter-object .default:after {

}
.filters .filter-object .data-options {
    position:absolute;
    padding-top:20px;
    text-align:left;
    left:0;
    right:0;
    top:40px;
    z-index:0;
    background-color:rgba(40, 23, 53, 0.80);
    border-left:1px solid #FFF;
    border-right:1px solid #FFF;
    border-bottom:1px solid #FFF;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius:12px;
    padding-bottom:10px;
}
.filters .filter-object .data-options div {
    padding:2px 20px;
}
.filters .filter-object .data-options div:hover {
    background-color:rgba(255, 255, 255, 0.1);
}
.filters .filter-object[aria-toggle='no'] {
    
}
.filters .filter-object[aria-toggle='yes'] {
    
}
.filters .filter-object[aria-toggle='no'] .data-options, .filters .flter-object[aria-toggle='yes'] .default {
    display:none;
}
.filters .filter-object[aria-toggle='yes'] .data-options, .filters .flter-object[aria-toggle='no'] .default {
    display:block;
}