.event {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}
.event-details h2 {
    font-size: 24px;
    line-height: 27px;
}
.event-time, .event-date {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1px; /* to align vertically with icon */
}

.event-time svg, .event-date svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.event-date {
    margin-bottom: 8px;
}

@media (min-width: 782px) {
    .event {
        flex-direction: row;
    }
    .event-image {
        margin-right: 1%;
        max-width: 30%;
    }
}