a.event {
    color: #686a6e;
    display: block;
}

a.event:hover {
    text-decoration: none;
}

a.event .inside {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}

.dateOrb {
    background: #e86f2d;
    z-index: 2;
    border-radius: 50%;
    width: 40px;
    height: 35px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    padding: 15px 10px 10px 10px;
    line-height: 17px;
    text-transform: uppercase;
    box-shadow: 0px 0px 2px rgba(88, 87, 87, 0.45);
    transition: all .2s ease-in-out;
}

a.event:hover .dateOrb {
    box-shadow: 0px 2px 6px rgba(88, 87, 87, 0.7);
}

.dateOrb span {
    display: block;
}

a.event .eventDate {
    display: table-cell;
    vertical-align: middle;
    width: 65px;
}

a.event .eventDetails {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    opacity: 0.8;
    transition: all .2s ease-in-out;
}

a.event:hover .eventDetails {
   opacity: 1;
}

a.event .eventName {
    font-weight: 700;
}