.featured-events-wrapper .container,
.event-activity-wrapper .container {
    max-width: 1600px;
}
.featured-events-wrapper h2,
.event-activity-wrapper h2 {
    text-align: center;
    color: var(--green);
    margin-bottom: 1.5em;
}
.featured-event {
    position: relative;
    padding-bottom: 50px;
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
}
.featured-event-image {
    margin-bottom: 15px;
}
.featured-event-details {
    padding: 0 15px;
}
.featured-event-details h3 {
    font-size: 2rem;
    color: var(--blue);
}
.featured-event-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.featured-event-button a.button{
    font-size: 18px;
    padding: 0.75em;
    text-align: center;
    display: block;
    width: 100%;
}
.featured-event-button a.button:hover,
.featured-event-button a.button:focus {
    transform: none;
}
.event-activity-wrapper .flexed {
    margin-bottom: 1.5em;
    justify-content: space-around;
}
.other-event {
    margin-bottom: 2em;
    position: relative;
    padding-bottom: 40px;
}
.other-event h3{
    color: var(--blue);
}
.event-meta {
    margin-bottom: 15px;
}
.event-meta > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1rem;
}
.event-meta > div > i.fas {
    flex-basis: 20px;
}
.event-meta > div > span {
    flex-basis: calc(100% - 25px);
}
.event-link {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.event-link a.button {
    font-size: 18px;
    padding: 0.5em;
    text-align: center;
    display: block;
    width: 100%;
}

@media screen and (max-width: 1200px){
    .other-event.block-25 {
        flex-basis: 31%;
    }
    .featured-events-wrapper .flexed {
        display: block;
    }
    .featured-event {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 2em;
        padding-bottom: 47px;
    }
    .featured-event-image.four-by-three {
        flex-basis: 40%;
        padding-bottom: 0;
        margin: 0;
    }
    .featured-event-details {
        flex-basis: 60%;
        padding: 75px 50px;
    }
    .featured-event-details p:last-of-type {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 900px){
    .featured-event-details,
    .featured-event-image.four-by-three {
        flex-basis: 50%;
    }
    .featured-event-details {
        padding: 50px 25px;
    }
}
@media screen and (max-width: 800px){
    .other-event.block-25 {
        flex-basis: 48%;
    }
}
@media screen and (max-width: 700px){
    .featured-event {
        display: block;
    }
    .featured-event-image.four-by-three {
        padding-bottom: 75%;
    }
}
@media screen and (max-width: 460px){
    .event-activity-wrapper .flexed {
        display: block;
    }
    .featured-event-details h3 {
        font-size: 1.6rem;
    }
}