.event_list h2 {
    text-align: center;
    color: #000000;
    font-family: "swiss911xcmbt", Sans-serif;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 50px 0;
}
.single_event {
    background: #E3B03C;
    padding: 45px 25px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.datetime_wrap {
    width: calc(105px - 30px);
    max-width: 100%;
    margin-right: 15px;
    background: #fff;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.month {
    font-family: "Georgia", Sans-serif;
    font-size: 15px;
    color: #af7900;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 400;
}
.date {
    font-family: "swiss911xcmbt", Sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #000;
    margin-bottom: -7px;
}
.year {
    font-family: "Georgia", Sans-serif;
    font-size: 15px;
    color: #af7900;
    line-height: 1.6;
}
.content_wrap {
    width: 450px;
    max-width: 100%;
    margin-right: 45px;
}
.datetime_f {
    font-family: "Georgia", Sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #000;
}
.content_wrap h3 {
    font-family: "swiss911xcmbt", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}
.content_wrap h3 a {
    color: #000;
}
.address_wrap {
    font-family: "Georgia", Sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 16px;
    color: #141827;
}
.event_excerpt {
    font-family: "Georgia", Sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
}
.event_img {
    width: 300px;
    max-width: 100%;
}
.event_img a {
    transition: opacity 0.2s ease;
}
.event_img a:hover {
    opacity: 0.8;
}
.event_img img {
    width: 100%;
}
@media screen and (max-width: 991px) {
    .event_list h2 {
        font-size: 40px;
    }
    .single_event {
        flex-direction: column;
    }
    .datetime_wrap {
        margin-bottom: 30px;
    }
}