.agenda {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.agenda__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    background-image: linear-gradient(to right, #0fb4bb, #054a8a);
}

.agenda__day {
    font-size: 1.5em;
    font-family: 'Asap', sans-serif;
    font-weight: 700;
}

.agenda__month {
    font-size: 0.9em;
    text-transform: lowercase;
}

.agenda__day,
.agenda__month {
    display: block;
    line-height: 1.2;
}

.agenda__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.agenda__title {
    margin-bottom: 0.3em;
    color: #054a8a;
    font-size: 1.2em;
}

.agenda__title::after {
    content: '\02c3';
    font-family: "fontello";
    display: inline-block;
    width: 5px;
    margin-left: 0.3em;
    margin-right: 0;
    color: #ee7325;
    transition: transform 0.3s ease-out;
}

.agenda:hover .agenda__title::after {
    transform: translateX(6px);
}

.agenda__organisation {
    font-size: 0.8em;
    letter-spacing: 1px;
    color: #454545;
    text-transform: uppercase;
}
