.events_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.events_header h2 {
    margin-top: -10px;
}

.events_header .category_filter {
    width: 300px;
}

.event {
    background-color: var(--white);
    box-sizing: border-box;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #00000014;
    margin-bottom: 20px;
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    padding: 15px;
}

.event_actions {
    width: 120px;
}

.event_actions .button {
    width: 100%;
}

.event h4 {
    color: var(--bronze);
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}

.event p {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.event p i {
    width: 18px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}

.past_events {
    opacity: 0.6;
}

.empty_state {
    margin-top: 0;
}

.small_event_image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 30px;
}

.small_event_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.event .button {
    margin-left: auto;
}

.hide {
    display: none;
}

.upcoming_no_posts,
.past_no_posts,
.next_month_no_posts {
    display: none;
}

.display {
    display: block;
}

@media (max-width: 900px) {
    .event {
        display: block;
    }

    .event .event_details {
        margin: 25px 0;
    }

    .event .button {
        margin-left: 0;
    }

    .events_header {
        display: block;
        margin-bottom: 30px;
    }

    /* .events_header h2 {
        margin-bottom: 10px;
    } */
}

@media (max-width: 600px) {
    .event .button,
    .events_header .category_filter {
        width: 100%;
    }

    h2 {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .small_event_image {
        width: 100%;
    }

    .event .event_details p:first-of-type {
        align-items: flex-start;
    }

    .event .event_details p:first-of-type i {
        margin-top: 5px;
    }
}