#dailyEventsWrapper {
    margin-bottom: 96px;
}

.large_event {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
    border: 2px solid var(--border-grey);
    padding: 15px;
    margin-top: 30px;
}

.large_event_image {
    width: 100%;
    height: 175px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.large_event .separator {
    height: 2px;
    background-color: var(--border-grey);
    width: 100%;
    margin: 15px 0;
    z-index: 1 !important;
  }

.large_event h4 {
    margin: 10px 0 -10px 0;
}

.large_event .event_times {
    background-color: var(--gold);
    padding: 15px 15px;
    width: 100%;
    box-sizing: border-box;
    color: var(--white);
    margin: 0 !important;
}

.large_event .score {
    margin-bottom: -10px;
}

.large_event .buttons_container {
    margin-left: auto;
}

.large_event .button_2 {
    margin-right: 15px;
}

@media (max-width: 1300px) and (min-width: 1250px) {
    .large_event .buttons_container {
        flex-direction: column;
    }

    .large_event .button_2 {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 500px) {
    .large_event .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .large_event .button_2,
    .large_event .button {
        width: 100%;
    }

    .large_event .button_2 {
        margin-right: 0;
        margin-bottom: 15px;
    }
}