.gm-events-grid-wrap {
    width: 100%;
}

.gm-events-filter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    margin: 0 0 40px;
}

.gm-events-filter-form label {
    display: block;
    margin: 0;
}

.gm-events-search-label {
    grid-column: 1 / -1;
}

.gm-events-filter-form input,
.gm-events-filter-form select,
.gm-events-filter-form button,
.gm-events-filter-form .gm-events-clear-filter {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.2;
}

.gm-events-filter-form button {
    cursor: pointer;
    padding: 0 18px;
}

.gm-events-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}

.gm-events-actions button,
.gm-events-actions .gm-events-clear-filter {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
	background: #ee443d;
    color: #fff;
    border: 0;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 400;
	transition:.25s;
}

.gm-events-actions button:hover,
.gm-events-actions .gm-events-clear-filter:hover, .gm-events-actions button:focus,
.gm-events-actions .gm-events-clear-filter:focus {
	background:#fff;
	color:#ee443d;
}

.gm-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.gm-event-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #222;
}

.gm-event-card-link {
    position: absolute;
    inset: 0;
    display: block;
    color: #fff;
    text-decoration: none;
}

.gm-event-card-bg {
    position: absolute;
    inset: 0;
    display: block;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    transition: transform 260ms ease, filter 260ms ease;
}

.gm-event-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.56px;
    color: #FFFFFF;
    opacity: 0.81;
}

.gm-event-card-content {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    color: #fff;
    width: 90%;
    padding: 20px;
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .3s ease;
}

.gm-event-card-link:hover .gm-event-card-content {
    padding: 30px 20px;
}

.gm-event-card-date {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.gm-event-card-title {
    display: block;
    font-size: 30px;
    margin: 0 0 8px;
    font-weight: 500;
    line-height: 1.05;
    font-family: 'degular', Sans-serif;
}

.gm-event-card-cta {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.2;
}

.gm-event-card-cta span {
    font-size: 34px;
    line-height: 0.8;
}

.gm-event-card-cta:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 12px;
    background: url('https://sc4a.org/wp-content/plugins/sca/public/img/arrow_links_color.svg') 0% 0% no-repeat padding-box;
    margin-left: 10px;
}

.gm-events-pagination {
    margin-top: 44px;
}

.gm-events-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gm-events-pagination a,
.gm-events-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid currentColor;
    text-decoration: none;
}

.gm-events-pagination .current {
    opacity: 1;
	color:#fff;
}

.gm-events-empty {
    margin: 30px 0 0;
}

@media (max-width: 1024px) {
    .gm-events-filter-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gm-events-search-label,
    .gm-events-actions {
        grid-column: 1 / -1;
    }

    .gm-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .gm-events-filter-form,
    .gm-events-grid {
        grid-template-columns: 1fr;
    }

    .gm-events-search-label,
    .gm-events-actions {
        grid-column: auto;
    }

    .gm-events-actions {
        flex-direction: column;
    }

    .gm-event-card {
        min-height: 390px;
    }

    .gm-event-card-category {
        top: 26px;
        left: 26px;
        right: 26px;
    }

    .gm-event-card-content {
        right: 0;
        min-height: 150px;
        padding: 24px 26px 26px;
    }
}
