h1 > span {
    color: var(--blue);
    font-size: 1.875rem;
    font-style: italic;
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
h1 {
    margin-bottom: 0;
}
.past-event {
    margin-bottom: 1.5em;
    padding: 20px;
}
.past-event p {
    margin-bottom: 0;
}

.event-meta {
    padding: 20px 15px;
    border-top: 1px solid #757575;
    border-bottom: 1px solid #757575;
    margin-bottom: 2em;
}
.event-meta .flexed {
    align-items: center;
    justify-content: space-evenly;
}
.event-meta a:not(.button) {
    text-decoration: underline;
    text-decoration-style: dotted;
}
.event-meta a:not(.button):hover,
.event-meta a:not(.button):focus {
    text-decoration: underline;
}
.event-meta a:not(.button):focus {
    outline: 1px dashed;
    outline-offset: 2px;
}
.event-meta i.fas {
    color: var(--green);
    margin-right: 15px;
}
.event-photo {
    flex-basis: 30%;
    line-height: 0;
}
.event-photo img {
    width: 100%;
}
.event-content {
    flex-basis: 65%;
}
.entry-content .flexed {
    align-items: flex-start;
}

@media screen and (max-width: 767px){
    .entry-content .flexed,
    .event-meta .flexed {
        display: block;
    }
    .event-photo {
        margin-bottom: 1em;
    }
}